1; RUN: %lli -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; XFAIL: mingw32,win32,powerpc64-unknown-linux-gnu 3; Remove XFAIL for powerpc64-unknown-linux-gnu if problem caused by r266663 is fixed 4 5declare i32 @FB() 6 7define i32 @FA() nounwind { 8 ret i32 0 9} 10 11define i32 @main() nounwind { 12 %r = call i32 @FB( ) ; <i32> [#uses=1] 13 ret i32 %r 14} 15