1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/test/ExecutionEngine/2003-01-04-PhiTest.ll

13 lines
235 B
LLVM
Raw Normal View History

; RUN: %lli %s > /dev/null
2004-11-07 00:32:43 +01:00
define i32 @main() {
; <label>:0
2003-01-13 21:02:16 +01: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-13 21:02:16 +01:00
}