[mips] XFAIL several MCJIT remote tests
[oota-llvm.git] / test / ExecutionEngine / MCJIT / remote / cross-module-a.ll
1 ; RUN: %lli_mcjit -extra-module=%p/Inputs/cross-module-b.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null
2
3 ; XFAIL: mips
4
5 declare i32 @FB()
6
7 define i32 @FA() {
8   ret i32 0
9 }
10
11 define i32 @main() {
12   %r = call i32 @FB( )   ; <i32> [#uses=1]
13   ret i32 %r
14 }
15