1; RUN: %lli_mcjit -extra-modules=%p/cross-module-b.ir -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null 2 3; This fails because __main is not resolved in remote mcjit. 4; XFAIL: cygwin,mingw32 5 6declare i32 @FB() 7 8define i32 @FA() { 9 ret i32 0 10} 11 12define i32 @main() { 13 %r = call i32 @FB( ) ; <i32> [#uses=1] 14 ret i32 %r 15} 16 17