summaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb2/thumb2-orn.ll
diff options
context:
space:
mode:
authorDavid Goodwin <david_goodwin@apple.com>2009-06-26 16:20:06 +0000
committerDavid Goodwin <david_goodwin@apple.com>2009-06-26 16:20:06 +0000
commitcaffbd7b01c232c4d70ae13f6464fbaf08768783 (patch)
tree1795a57ed729ffc2f945a790b0f8572b6bed3ace /test/CodeGen/Thumb2/thumb2-orn.ll
parent83b3593478406b020b7af6ba5402a14507d7d713 (diff)
downloadllvm-caffbd7b01c232c4d70ae13f6464fbaf08768783.tar.gz
llvm-caffbd7b01c232c4d70ae13f6464fbaf08768783.tar.bz2
llvm-caffbd7b01c232c4d70ae13f6464fbaf08768783.tar.xz
ORN and BIC tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74289 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Thumb2/thumb2-orn.ll')
-rw-r--r--test/CodeGen/Thumb2/thumb2-orn.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/Thumb2/thumb2-orn.ll b/test/CodeGen/Thumb2/thumb2-orn.ll
index 9cae8d3049..9b2802b9f1 100644
--- a/test/CodeGen/Thumb2/thumb2-orn.ll
+++ b/test/CodeGen/Thumb2/thumb2-orn.ll
@@ -1,13 +1,13 @@
-; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {bic\\W*r\[0-9\]*,\\W*r\[0-9\]*,\\W*r\[0-9\]*} | count 2
+; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {orn\\W*r\[0-9\]*,\\W*r\[0-9\]*,\\W*r\[0-9\]*} | count 2
define i32 @f1(i32 %a, i32 %b) {
%tmp = xor i32 %b, 4294967295
- %tmp1 = and i32 %a, %tmp
+ %tmp1 = or i32 %a, %tmp
ret i32 %tmp1
}
define i32 @f2(i32 %a, i32 %b) {
%tmp = xor i32 %b, 4294967295
- %tmp1 = and i32 %tmp, %a
+ %tmp1 = or i32 %tmp, %a
ret i32 %tmp1
}