Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / 2003-08-05-InvokeCrash.ll
blob3d330b92c16c14a8523a712c773556b53f538f16
1 ; Do not remove the invoke!
3 ; RUN: opt < %s -passes=simplifycfg -simplifycfg-require-and-preserve-domtree=1 -disable-output
5 define i32 @test() personality ptr @__gxx_personality_v0 {
6         %A = invoke i32 @test( )
7                         to label %Ret unwind label %Ret2                ; <i32> [#uses=1]
8 Ret:            ; preds = %0
9         ret i32 %A
10 Ret2:           ; preds = %0
11         %val = landingpad { ptr, i32 }
12                  catch ptr null
13         ret i32 undef
16 declare i32 @__gxx_personality_v0(...)