diff options
author | David Goodwin <david_goodwin@apple.com> | 2009-06-26 16:20:06 +0000 |
---|---|---|
committer | David Goodwin <david_goodwin@apple.com> | 2009-06-26 16:20:06 +0000 |
commit | caffbd7b01c232c4d70ae13f6464fbaf08768783 (patch) | |
tree | 1795a57ed729ffc2f945a790b0f8572b6bed3ace /test/CodeGen/ARM/bic.ll | |
parent | 83b3593478406b020b7af6ba5402a14507d7d713 (diff) |
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/ARM/bic.ll')
-rw-r--r-- | test/CodeGen/ARM/bic.ll | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/bic.ll b/test/CodeGen/ARM/bic.ll new file mode 100644 index 0000000000..b4ea433c40 --- /dev/null +++ b/test/CodeGen/ARM/bic.ll @@ -0,0 +1,13 @@ +; RUN: llvm-as < %s | llc -march=arm | grep {bic\\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 + ret i32 %tmp1 +} + +define i32 @f2(i32 %a, i32 %b) { + %tmp = xor i32 %b, 4294967295 + %tmp1 = and i32 %tmp, %a + ret i32 %tmp1 +} |