diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-02-01 01:16:18 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-02-01 01:16:18 +0000 |
commit | 4d98ee52348c23a7a2f59a4235941fcbb668a2b9 (patch) | |
tree | 0cd590d0c7148b995f6f456ce176d41180d6e623 /test | |
parent | 2bffee2ee725047137d2523e31db9ecc7b246cbb (diff) | |
download | external_llvm-4d98ee52348c23a7a2f59a4235941fcbb668a2b9.zip external_llvm-4d98ee52348c23a7a2f59a4235941fcbb668a2b9.tar.gz external_llvm-4d98ee52348c23a7a2f59a4235941fcbb668a2b9.tar.bz2 |
Fix test for non-darwin targets.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124640 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/ARM/prefetch.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/MC/ARM/prefetch.ll b/test/MC/ARM/prefetch.ll index 840a1a0..674b8f3 100644 --- a/test/MC/ARM/prefetch.ll +++ b/test/MC/ARM/prefetch.ll @@ -1,5 +1,5 @@ -; RUN: llc < %s -march=arm -mattr=+v7a,+mp -show-mc-encoding | FileCheck %s -check-prefix=ARM -; RUN: llc < %s -march=thumb -mattr=+v7a -show-mc-encoding | FileCheck %s -check-prefix=T2 +; RUN: llc < %s -mtriple=armv7-apple-darwin -mattr=+v7a,+mp -show-mc-encoding | FileCheck %s -check-prefix=ARM +; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=+v7a -show-mc-encoding | FileCheck %s -check-prefix=T2 ; rdar://8924681 define void @t1(i8* %ptr) nounwind { |