Home | History | Annotate | Download | only in remote
      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 
      3 declare i32 @FB()
      4 
      5 define i32 @FA() nounwind {
      6   ret i32 0
      7 }
      8 
      9 define i32 @main() nounwind {
     10   %r = call i32 @FB( )   ; <i32> [#uses=1]
     11   ret i32 %r
     12 }
     13