summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/SPARC/basictest.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SPARC/basictest.ll')
-rw-r--r--test/CodeGen/SPARC/basictest.ll24
1 files changed, 22 insertions, 2 deletions
diff --git a/test/CodeGen/SPARC/basictest.ll b/test/CodeGen/SPARC/basictest.ll
index 9c2c16a..4352e62 100644
--- a/test/CodeGen/SPARC/basictest.ll
+++ b/test/CodeGen/SPARC/basictest.ll
@@ -1,6 +1,26 @@
-; RUN: llc < %s -march=sparc
+; RUN: llc < %s -march=sparc | FileCheck %s
-define i32 @test(i32 %X) {
+define i32 @test0(i32 %X) {
%tmp.1 = add i32 %X, 1
ret i32 %tmp.1
+; CHECK: test0:
+; CHECK: add %i0, 1, %i0
+}
+
+
+;; xnor tests.
+define i32 @test1(i32 %X, i32 %Y) {
+ %A = xor i32 %X, %Y
+ %B = xor i32 %A, -1
+ ret i32 %B
+; CHECK: test1:
+; CHECK: xnor %i0, %i1, %i0
+}
+
+define i32 @test2(i32 %X, i32 %Y) {
+ %A = xor i32 %X, -1
+ %B = xor i32 %A, %Y
+ ret i32 %B
+; CHECK: test2:
+; CHECK: xnor %i0, %i1, %i0
}
OpenPOWER on IntegriCloud