1 ; RUN: llvm-as %s -o /dev/null
3 ; Dominance relationships is not calculated correctly for unreachable blocks,
4 ; which causes the verifier to barf on this input.
6 define i32 @test(i1 %b) {
8 ret i32 7 ; Loop is unreachable
10 Loop: ; preds = %L2, %Loop
11 %B = phi i32 [ %B, %L2 ], [ %B, %Loop ] ;PHI has same value always.
12 br i1 %b, label %L2, label %Loop