Add testcase for r63142.
[oota-llvm.git] / test / CodeGen / X86 / fast-isel.ll
index ba7e861600a9751fd89fc380d5dcf1311be7f25e..9910629211e5689bc0aa63eb2629e141ac839827 100644 (file)
@@ -1,12 +1,12 @@
-; RUN: llvm-as < %s | llc -fast-isel -march=x86
-; RUN: llvm-as < %s | llc -fast-isel -march=x86-64
+; RUN: llvm-as < %s | llc -fast-isel -march=x86 -mattr=sse2
 
 ; This tests very minimal fast-isel functionality.
 
-define i32 @foo(i32* %p, i32* %q) {
+define i32* @foo(i32* %p, i32* %q, i32** %z) nounwind {
 entry:
   %r = load i32* %p
   %s = load i32* %q
+  %y = load i32** %z
   br label %fast
 
 fast:
@@ -17,13 +17,15 @@ fast:
   %t4 = or i32 %t3, %s
   %t5 = xor i32 %t4, %s
   %t6 = add i32 %t5, 2
+  %t7 = getelementptr i32* %y, i32 1
+  %t8 = getelementptr i32* %t7, i32 %t6
   br label %exit
 
 exit:
-  ret i32 %t6
+  ret i32* %t8
 }
 
-define double @bar(double* %p, double* %q) {
+define double @bar(double* %p, double* %q) nounwind {
 entry:
   %r = load double* %p
   %s = load double* %q
@@ -33,9 +35,15 @@ fast:
   %t0 = add double %r, %s
   %t1 = mul double %t0, %s
   %t2 = sub double %t1, %s
+  %t3 = add double %t2, 707.0
   br label %exit
 
 exit:
-  ret double %t2
+  ret double %t3
 }
 
+define i32 @cast() nounwind {
+entry:
+       %tmp2 = bitcast i32 0 to i32
+       ret i32 %tmp2
+}