Update the branch weight metadata when reversing the order of a branch.
[oota-llvm.git] / test / Transforms / SimplifyCFG / 2003-08-05-InvokeCrash.ll
index 6c791d2e85df4afd5817c30db277a630c2464a7e..7551e8fb747c78a0e7e57cd236cbe955b0d244eb 100644 (file)
@@ -1,9 +1,16 @@
 ; Do not remove the invoke!
 ;
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg -disable-output
+; RUN: opt < %s -simplifycfg -disable-output
 
-int %test() {
-       %A = invoke int %test() to label %Ret except label %Ret
-Ret:
-       ret int %A
+define i32 @test() {
+       %A = invoke i32 @test( )
+                       to label %Ret unwind label %Ret2                ; <i32> [#uses=1]
+Ret:           ; preds = %0
+       ret i32 %A
+Ret2:          ; preds = %0
+        %val = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
+                 catch i8* null
+       ret i32 undef
 }
+
+declare i32 @__gxx_personality_v0(...)