Standardizing lli's extra module command line option
[oota-llvm.git] / test / ExecutionEngine / MCJIT / remote / multi-module-a.ll
1 ; RUN: %lli_mcjit -extra-module=%p/multi-module-b.ir -extra-module=%p/multi-module-c.ir -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null
2
3 ; This fails because __main is not resolved in remote mcjit.
4 ; XFAIL: cygwin,mingw32
5
6 declare i32 @FB()
7
8 define i32 @main() {
9   %r = call i32 @FB( )   ; <i32> [#uses=1]
10   ret i32 %r
11 }
12