diff options
Diffstat (limited to 'test/ExecutionEngine/test-branch.ll')
-rw-r--r-- | test/ExecutionEngine/test-branch.ll | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/ExecutionEngine/test-branch.ll b/test/ExecutionEngine/test-branch.ll new file mode 100644 index 00000000000..3ae55d069b3 --- /dev/null +++ b/test/ExecutionEngine/test-branch.ll @@ -0,0 +1,12 @@ +; RUN: %lli %s > /dev/null + +; test unconditional branch +define i32 @main() { + br label %Test +Test: ; preds = %Test, %0 + %X = icmp eq i32 0, 4 ; <i1> [#uses=1] + br i1 %X, label %Test, label %Label +Label: ; preds = %Test + ret i32 0 +} + |