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