xref: /llvm-project/llvm/test/ExecutionEngine/MCJIT/remote/multi-module-a.ll (revision 5bbf576945b772bcde2707668a3a52a736e59b3d)
1; RUN: %lli -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%exeext %s > /dev/null
2; XFAIL: mingw32,win32
3
4declare i32 @FB()
5
6define i32 @main() nounwind {
7  %r = call i32 @FB( )   ; <i32> [#uses=1]
8  ret i32 %r
9}
10
11