summaryrefslogtreecommitdiffstats
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
commit34f7ede9e7b4582fa599797c2d360686177f27da (patch)
treea7fc64314472456d8b54f0c4cb04f9f2ceee7b92
parent0377f737ff6b4ca01006c05c7efa8943f172e362 (diff)
downloadbcm5719-llvm-34f7ede9e7b4582fa599797c2d360686177f27da.tar.gz
bcm5719-llvm-34f7ede9e7b4582fa599797c2d360686177f27da.zip
ORN and BIC tests.
llvm-svn: 74289
-rw-r--r--llvm/test/CodeGen/ARM/bic.ll (renamed from llvm/test/CodeGen/ARM/orn.ll)0
-rw-r--r--llvm/test/CodeGen/Thumb2/thumb2-bic.ll13
-rw-r--r--llvm/test/CodeGen/Thumb2/thumb2-orn.ll6
3 files changed, 16 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/ARM/orn.ll b/llvm/test/CodeGen/ARM/bic.ll
index b4ea433c40c..b4ea433c40c 100644
--- a/llvm/test/CodeGen/ARM/orn.ll
+++ b/llvm/test/CodeGen/ARM/bic.ll
diff --git a/llvm/test/CodeGen/Thumb2/thumb2-bic.ll b/llvm/test/CodeGen/Thumb2/thumb2-bic.ll
new file mode 100644
index 00000000000..9cae8d30494
--- /dev/null
+++ b/llvm/test/CodeGen/Thumb2/thumb2-bic.ll
@@ -0,0 +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
+
+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
+}
diff --git a/llvm/test/CodeGen/Thumb2/thumb2-orn.ll b/llvm/test/CodeGen/Thumb2/thumb2-orn.ll
index 9cae8d30494..9b2802b9f14 100644
--- a/llvm/test/CodeGen/Thumb2/thumb2-orn.ll
+++ b/llvm/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
}
OpenPOWER on IntegriCloud