1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/ExecutionEngine/OrcMCJIT/remote/simpletest-remote.ll
2016-01-14 01:33:00 +00:00

12 lines
260 B
LLVM

; RUN: %lli -jit-kind=orc-mcjit -remote-mcjit -mcjit-remote-process=lli-child-target%exeext %s > /dev/null
; XFAIL: mingw32,win32
define i32 @bar() nounwind {
ret i32 0
}
define i32 @main() nounwind {
%r = call i32 @bar( ) ; <i32> [#uses=1]
ret i32 %r
}