llvm-6502/test/ExecutionEngine/MCJIT/remote/multi-module-a.ll
2013-10-04 00:49:38 +00:00

10 lines
275 B
LLVM

; RUN: %lli_mcjit -extra-modules=%p/multi-module-b.ir,%p/multi-module-c.ir -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null
declare i32 @FB()
define i32 @main() {
%r = call i32 @FB( ) ; <i32> [#uses=1]
ret i32 %r
}