diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-07-07 03:55:05 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-07-07 03:55:05 +0000 |
commit | 8b2bda09a5806455ea6a73658c4dd70158d09e03 (patch) | |
tree | 704bfc03afa386eb4c3720d6a5ee9d31d98ebab9 /llvm/test/CodeGen/ARM/prefetch.ll | |
parent | 7c6c6cc425ebbba2219016e3e1159bd56435d087 (diff) | |
download | bcm5719-llvm-8b2bda09a5806455ea6a73658c4dd70158d09e03.tar.gz bcm5719-llvm-8b2bda09a5806455ea6a73658c4dd70158d09e03.zip |
Change some ARM subtarget features to be single bit yes/no in order to sink them down to MC layer. Also fix tests.
llvm-svn: 134590
Diffstat (limited to 'llvm/test/CodeGen/ARM/prefetch.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/prefetch.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/ARM/prefetch.ll b/llvm/test/CodeGen/ARM/prefetch.ll index 250a34e8b0e..9c8ff2b4096 100644 --- a/llvm/test/CodeGen/ARM/prefetch.ll +++ b/llvm/test/CodeGen/ARM/prefetch.ll @@ -1,6 +1,6 @@ ; RUN: llc < %s -march=thumb -mattr=-thumb2 | not grep pld -; RUN: llc < %s -march=thumb -mattr=+v7a | FileCheck %s -check-prefix=THUMB2 -; RUN: llc < %s -march=arm -mattr=+v7a | FileCheck %s -check-prefix=ARM +; RUN: llc < %s -march=thumb -mattr=+v7 | FileCheck %s -check-prefix=THUMB2 +; RUN: llc < %s -march=arm -mattr=+v7 | FileCheck %s -check-prefix=ARM ; RUN: llc < %s -march=arm -mcpu=cortex-a9-mp | FileCheck %s -check-prefix=ARM-MP ; rdar://8601536 |