Revert "[clang] improve print / dump of anonymous declarations (#124605)"
[llvm-project.git] / llvm / test / Transforms / SCCP / 2003-08-26-InvokeHandling.ll
bloba42f7501241e9e516b592d66edb5fb9575101853
1 ; The PHI cannot be eliminated from this testcase, SCCP is mishandling invoke's!
2 ; RUN: opt < %s -passes=sccp -S | grep phi
4 declare void @foo()
6 define i32 @test(i1 %cond) personality ptr @__gxx_personality_v0 {
7 Entry:
8         br i1 %cond, label %Inv, label %Cont
9 Inv:            ; preds = %Entry
10         invoke void @foo( )
11                         to label %Ok unwind label %LPad
12 Ok:             ; preds = %Inv
13         br label %Cont
14 LPad:
15         %val = landingpad { ptr, i32 }
16                  catch ptr null
17         br label %Cont
18 Cont:           ; preds = %Ok, %Inv, %Entry
19         %X = phi i32 [ 0, %Entry ], [ 1, %Ok ], [ 0, %LPad ]            ; <i32> [#uses=1]
20         ret i32 %X
23 declare i32 @__gxx_personality_v0(...)