X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FTransforms%2FSimplifyCFG%2F2003-08-05-InvokeCrash.ll;h=7551e8fb747c78a0e7e57cd236cbe955b0d244eb;hb=c9a1aed7fefe627820bb92154361ede0568229fc;hp=6c791d2e85df4afd5817c30db277a630c2464a7e;hpb=69ccadd7535a83b348595cf603126e6a68b2883b;p=oota-llvm.git diff --git a/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll b/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll index 6c791d2e85d..7551e8fb747 100644 --- a/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll +++ b/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll @@ -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 ; [#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(...)