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/ifcvt3.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/ifcvt3.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/ifcvt3.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/ARM/ifcvt3.ll b/llvm/test/CodeGen/ARM/ifcvt3.ll index f7ebac6f2ba..3e2c578dd06 100644 --- a/llvm/test/CodeGen/ARM/ifcvt3.ll +++ b/llvm/test/CodeGen/ARM/ifcvt3.ll @@ -1,6 +1,6 @@ -; RUN: llc < %s -march=arm -; RUN: llc < %s -march=arm | grep cmpne | count 1 -; RUN: llc < %s -march=arm | grep bx | count 2 +; RUN: llc < %s -march=arm -mattr=+v4t +; RUN: llc < %s -march=arm -mattr=+v4t | grep cmpne | count 1 +; RUN: llc < %s -march=arm -mattr=+v4t | grep bx | count 2 define i32 @t1(i32 %a, i32 %b, i32 %c, i32 %d) { switch i32 %c, label %cond_next [ |