diff options
Diffstat (limited to 'test/ExecutionEngine/test-branch.ll')
-rw-r--r-- | test/ExecutionEngine/test-branch.ll | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/ExecutionEngine/test-branch.ll b/test/ExecutionEngine/test-branch.ll new file mode 100644 index 0000000..dd8db54 --- /dev/null +++ b/test/ExecutionEngine/test-branch.ll @@ -0,0 +1,13 @@ +; RUN: llvm-as %s -o %t.bc +; RUN: lli %t.bc > /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 +} + |