Add correct NEON encodings for the "multiple single elements" form of vld.
[oota-llvm.git] / test / ExecutionEngine / 2003-01-04-ArgumentBug.ll
index 792913d2b5edc5c44c1681e68a1d1180aad8adf3..5d37e96641621a5f33b37ea2a36476b37eca1b12 100644 (file)
@@ -1,13 +1,14 @@
+; RUN: llvm-as %s -o %t.bc
+; RUN: lli %t.bc > /dev/null
 
-implementation   ; Functions:
-
-int %foo(int %X, int %Y, double %A) {
-       %cond212 = setne double %A, 1.000000e+00                ; <bool> [#uses=1]
-       %cast110 = cast bool %cond212 to int            ; <int> [#uses=1]
-       ret int %cast110
+define i32 @foo(i32 %X, i32 %Y, double %A) {
+       %cond212 = fcmp une double %A, 1.000000e+00             ; <i1> [#uses=1]
+       %cast110 = zext i1 %cond212 to i32              ; <i32> [#uses=1]
+       ret i32 %cast110
 }
 
-int %main() {
-       %reg212 = call int %foo( int 0, int 1, double 1.000000e+00 )            ; <int> [#uses=1]
-       ret int %reg212
+define i32 @main() {
+       %reg212 = call i32 @foo( i32 0, i32 1, double 1.000000e+00 )            ; <i32> [#uses=1]
+       ret i32 %reg212
 }
+