llvm-project/llvm/test/ExecutionEngine/2003-01-04-PhiTest.ll

14 lines
269 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s -f -o %t.bc
2004-11-07 07:32:43 +08:00
; RUN: lli %t.bc > /dev/null
define i32 @main() {
; <label>:0
2003-01-14 04:02:16 +08:00
br label %Loop
Loop: ; preds = %Loop, %0
%X = phi i32 [ 0, %0 ], [ 1, %Loop ] ; <i32> [#uses=1]
br i1 true, label %Out, label %Loop
Out: ; preds = %Loop
ret i32 %X
2003-01-14 04:02:16 +08:00
}