diff options
Diffstat (limited to 'test/ExecutionEngine/MCJIT/simpletest-remote.ll')
-rw-r--r-- | test/ExecutionEngine/MCJIT/simpletest-remote.ll | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/ExecutionEngine/MCJIT/simpletest-remote.ll b/test/ExecutionEngine/MCJIT/simpletest-remote.ll new file mode 100644 index 0000000000000..9ceaf545c5e60 --- /dev/null +++ b/test/ExecutionEngine/MCJIT/simpletest-remote.ll @@ -0,0 +1,12 @@ +; RUN: %lli_mcjit -remote-mcjit %s > /dev/null +; XFAIL: arm, mips + +define i32 @bar() { + ret i32 0 +} + +define i32 @main() { + %r = call i32 @bar( ) ; <i32> [#uses=1] + ret i32 %r +} + |