summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/MCJIT/test-branch.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/ExecutionEngine/MCJIT/test-branch.ll')
-rw-r--r--test/ExecutionEngine/MCJIT/test-branch.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/ExecutionEngine/MCJIT/test-branch.ll b/test/ExecutionEngine/MCJIT/test-branch.ll
deleted file mode 100644
index 702c110220..0000000000
--- a/test/ExecutionEngine/MCJIT/test-branch.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; RUN: %lli -use-mcjit %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
-}
-