ORN and BIC tests.
authorDavid Goodwin <david_goodwin@apple.com>
Fri, 26 Jun 2009 16:20:06 +0000 (16:20 +0000)
committerDavid Goodwin <david_goodwin@apple.com>
Fri, 26 Jun 2009 16:20:06 +0000 (16:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74289 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/ARM/bic.ll [new file with mode: 0644]
test/CodeGen/ARM/orn.ll [deleted file]
test/CodeGen/Thumb2/thumb2-bic.ll [new file with mode: 0644]
test/CodeGen/Thumb2/thumb2-orn.ll

diff --git a/test/CodeGen/ARM/bic.ll b/test/CodeGen/ARM/bic.ll
new file mode 100644 (file)
index 0000000..b4ea433
--- /dev/null
@@ -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
+}
diff --git a/test/CodeGen/ARM/orn.ll b/test/CodeGen/ARM/orn.ll
deleted file mode 100644 (file)
index b4ea433..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-; 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
-}
diff --git a/test/CodeGen/Thumb2/thumb2-bic.ll b/test/CodeGen/Thumb2/thumb2-bic.ll
new file mode 100644 (file)
index 0000000..9cae8d3
--- /dev/null
@@ -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
+}
index 9cae8d30494c2f29a0229bfb6d6e00a43f8efd23..9b2802b9f14dc85cb2c35b576ddda3770775a8c2 100644 (file)
@@ -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
 }