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/hello.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/hello.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/hello.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/ARM/hello.ll b/llvm/test/CodeGen/ARM/hello.ll index bfed7a6630b..9f46ae078d8 100644 --- a/llvm/test/CodeGen/ARM/hello.ll +++ b/llvm/test/CodeGen/ARM/hello.ll @@ -1,8 +1,8 @@ ; RUN: llc < %s -march=arm -; RUN: llc < %s -mtriple=arm-linux-gnueabi | grep mov | count 1 -; RUN: llc < %s -mtriple=arm-linux-gnu --disable-fp-elim | \ +; RUN: llc < %s -mtriple=armv6-linux-gnueabi | grep mov | count 1 +; RUN: llc < %s -mtriple=armv6-linux-gnu --disable-fp-elim | \ ; RUN: grep mov | count 2 -; RUN: llc < %s -mtriple=arm-apple-darwin | grep mov | count 2 +; RUN: llc < %s -mtriple=armv6-apple-darwin | grep mov | count 2 @str = internal constant [12 x i8] c"Hello World\00" |