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