1; RUN: %lli_mcjit -extra-module=%p/Inputs/multi-module-b.ll -extra-module=%p/Inputs/multi-module-c.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target -relocation-model=pic -code-model=small %s > /dev/null
2; XFAIL: mips, i686, i386, arm
3
4declare i32 @FB()
5
6define i32 @main() {
7  %r = call i32 @FB( )   ; <i32> [#uses=1]
8  ret i32 %r
9}
10
11