[X86] Simplify check lines in tests. No functional change.
[oota-llvm.git] / test / ExecutionEngine / OrcJIT / remote / cross-module-a.ll
1 ; RUN: %lli -use-orcmcjit -extra-module=%p/Inputs/cross-module-b.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target%exeext %s > /dev/null
2
3 declare i32 @FB()
4
5 define i32 @FA() nounwind {
6   ret i32 0
7 }
8
9 define i32 @main() nounwind {
10   %r = call i32 @FB( )   ; <i32> [#uses=1]
11   ret i32 %r
12 }