Fix unicode chars into ascii in comment lines.
[oota-llvm.git] / test / ExecutionEngine / 2003-01-04-PhiTest.ll
index 34e1620131369ef62360a63a8bd32f84599297b1..48576e7c83e68d52b175ed171209c8c4bde3238d 100644 (file)
@@ -1,8 +1,12 @@
-int %main() {
+; RUN: %lli %s > /dev/null
+
+define i32 @main() {
+; <label>:0
        br label %Loop
-Loop:
-       %X = phi int [0, %0], [1, %Loop]
-       br bool true, label %Out, label %Loop
-Out:
-       ret int %X
+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
 }
+