summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/2003-01-04-PhiTest.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/ExecutionEngine/2003-01-04-PhiTest.ll')
-rw-r--r--test/ExecutionEngine/2003-01-04-PhiTest.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/ExecutionEngine/2003-01-04-PhiTest.ll b/test/ExecutionEngine/2003-01-04-PhiTest.ll
new file mode 100644
index 000000000000..649ed0b24277
--- /dev/null
+++ b/test/ExecutionEngine/2003-01-04-PhiTest.ll
@@ -0,0 +1,13 @@
+; RUN: llvm-as %s -f -o %t.bc
+; RUN: lli %t.bc > /dev/null
+
+define i32 @main() {
+; <label>:0
+ 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
+}
+