]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/ExecutionEngine/MCJIT/remote/cross-module-a.ll
Vendor import of llvm release_34 branch r197841 (effectively, 3.4 RC3):
[FreeBSD/FreeBSD.git] / test / ExecutionEngine / MCJIT / remote / cross-module-a.ll
1 ; RUN: %lli_mcjit -extra-module=%p/Inputs/cross-module-b.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null
2
3 declare i32 @FB()
4
5 define i32 @FA() {
6   ret i32 0
7 }
8
9 define i32 @main() {
10   %r = call i32 @FB( )   ; <i32> [#uses=1]
11   ret i32 %r
12 }
13