[Orc][lli] Add a very simple Orc-based lazy JIT to lli.
[oota-llvm.git] / test / ExecutionEngine / OrcJIT / test-call-no-external-funcs.ll
diff --git a/test/ExecutionEngine/OrcJIT/test-call-no-external-funcs.ll b/test/ExecutionEngine/OrcJIT/test-call-no-external-funcs.ll
deleted file mode 100644 (file)
index c536efe..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-; RUN: %lli -use-orcmcjit %s > /dev/null
-
-define i32 @_Z14func_exit_codev() nounwind uwtable {
-entry:
-  ret i32 0
-}
-
-define i32 @main() nounwind uwtable {
-entry:
-  %retval = alloca i32, align 4
-  store i32 0, i32* %retval
-  %call = call i32 @_Z14func_exit_codev()
-  ret i32 %call
-}