2009-08-25 15:38:29 +00:00
|
|
|
; RUN: llvm-as %s -o /dev/null
|
2004-11-06 22:07:09 +00:00
|
|
|
|
2002-08-22 20:30:06 +00:00
|
|
|
; Dominance relationships is not calculated correctly for unreachable blocks,
|
|
|
|
; which causes the verifier to barf on this input.
|
|
|
|
|
2008-02-14 07:57:12 +00:00
|
|
|
define i32 @test(i1 %b) {
|
|
|
|
BB0:
|
|
|
|
ret i32 7 ; Loop is unreachable
|
2002-08-22 20:30:06 +00:00
|
|
|
|
2008-02-14 07:57:12 +00: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-22 20:30:06 +00:00
|
|
|
br label %Loop
|
|
|
|
}
|
|
|
|
|