The variable "Value" is carefully set to Layout.getSymbolAddress,
[oota-llvm.git] / test / Verifier / invoke-1.ll
index dd606f09c82dd881fe3563cee8f531837876f9a1..427abe02cef70c02aee99ddbacdb5ca19be6c00a 100644 (file)
@@ -1,10 +1,10 @@
-; RUN: llvm-upgrade < %s | not llvm-as &| grep {not verify as correct}
+; RUN: not llvm-as < %s |& grep {not verify as correct}
 ; PR1042
 
-int %foo() {
-   %A = invoke int %foo( )
-        to label %L unwind label %L             ; <int> [#uses=1]
-
-L: ; preds = %0, %0
-   ret int %A
+define i32 @foo() {
+       %A = invoke i32 @foo( )
+                       to label %L unwind label %L             ; <i32> [#uses=1]
+L:             ; preds = %0, %0
+       ret i32 %A
 }
+