Set the 'MadeChange' variable if we are deleting blocks.
[oota-llvm.git] / test / CodeGen / SPARC / basictest.ll
index 11bbe16bb162a79f7c518352133355e5409fd6d4..4352e6246301790fef40788a6e6c96882e8a6233 100644 (file)
@@ -1,6 +1,26 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=sparc
+; RUN: llc < %s -march=sparc | FileCheck %s
 
-int %test(int %X) {
-       %tmp.1 = add int %X, 1          ; <int> [#uses=1]
-       ret int %tmp.1
+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
 }