hanchenye-llvm-project/llvm/test/Assembler/2002-08-22-DominanceProblem.ll

18 lines
456 B
LLVM
Raw Normal View History

; RUN: llvm-as %s -o /dev/null
2004-11-07 06:07:09 +08:00
2002-08-23 04:30:06 +08:00
; Dominance relationships is not calculated correctly for unreachable blocks,
; which causes the verifier to barf on this input.
2008-02-14 15:57:12 +08:00
define i32 @test(i1 %b) {
BB0:
ret i32 7 ; Loop is unreachable
2002-08-23 04:30:06 +08:00
2008-02-14 15:57:12 +08:00
Loop: ; preds = %L2, %Loop
%B = phi i32 [ %B, %L2 ], [ %B, %Loop ] ;PHI has same value always.
br i1 %b, label %L2, label %Loop
L2: ; preds = %Loop
2002-08-23 04:30:06 +08:00
br label %Loop
}