Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / 2002-05-21-PHIElimination.ll
blob55d54d9bf76ddb20cb4665e8330e5a2a1a04cc5d
1 ; CFG Simplification is making a loop dead, then changing the add into:
3 ;   %V1 = add int %V1, 1
5 ; Which is not valid SSA
7 ; RUN: opt < %s -passes=simplifycfg -simplifycfg-require-and-preserve-domtree=1 | llvm-dis
9 define void @test() {
10 ; <label>:0
11         br i1 true, label %end, label %Loop
12 Loop:           ; preds = %Loop, %0
13         %V = phi i32 [ 0, %0 ], [ %V1, %Loop ]          ; <i32> [#uses=1]
14         %V1 = add i32 %V, 1             ; <i32> [#uses=1]
15         br label %Loop
16 end:            ; preds = %0
17         ret void