Re-factored RuntimeDyld.
[oota-llvm.git] / test / ExecutionEngine / MCJIT / test-branch.ll
diff --git a/test/ExecutionEngine/MCJIT/test-branch.ll b/test/ExecutionEngine/MCJIT/test-branch.ll
new file mode 100644 (file)
index 0000000..702c110
--- /dev/null
@@ -0,0 +1,12 @@
+; 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
+}
+