diff options
-rw-r--r-- | test/ExecutionEngine/2003-01-04-PhiTest.ll | 10 |
1 files changed, 10 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 0000000000..59d5fded0c --- /dev/null +++ b/test/ExecutionEngine/2003-01-04-PhiTest.ll @@ -0,0 +1,10 @@ +; RUN: as < %s | lli -force-interpreter=false + +int %main() { + br label %Loop +Loop: + %X = phi int [0, %0], [1, %Loop] + br bool true, label %Out, label %Loop +Out: + ret int %X +} |