1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00
llvm-mirror/test/Assembler/2002-08-22-DominanceProblem.ll

19 lines
486 B
LLVM
Raw Normal View History

; RUN: llvm-as %s -o /dev/null
; RUN: verify-uselistorder %s
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
}