diff options
author | Eli Bendersky <eli.bendersky@intel.com> | 2012-01-17 09:14:54 +0000 |
---|---|---|
committer | Eli Bendersky <eli.bendersky@intel.com> | 2012-01-17 09:14:54 +0000 |
commit | a7f99f28a71635e83d85c68c47ca0fc20ec68400 (patch) | |
tree | f4fefe779a5038b141033a1b3dbcd2311b3f2d0b /test/ExecutionEngine/test-call-no-external-funcs.ll | |
parent | 0b94b5f52b11092a69267159dfe0df3acdfcabd7 (diff) |
Additional ExecutionEngine tests, as part of bringing up the MCJIT on ELF
implementation.
Currently lit still executes ExecutionEngine tests with JIT (not MCJIT) by
default. MCJIT tests can be executed manually by calling llvm-lit with
--param jit_impl=mcjit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148299 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/test-call-no-external-funcs.ll')
-rw-r--r-- | test/ExecutionEngine/test-call-no-external-funcs.ll | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/ExecutionEngine/test-call-no-external-funcs.ll b/test/ExecutionEngine/test-call-no-external-funcs.ll new file mode 100644 index 0000000000..0c98379a0b --- /dev/null +++ b/test/ExecutionEngine/test-call-no-external-funcs.ll @@ -0,0 +1,16 @@ +; RUN: %lli %s > /dev/null +; XFAIL: arm +; XFAIL: mcjit + +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 +} |