Home | History | Annotate | Download | only in remote
      1 ; RUN: %lli -jit-kind=orc-mcjit -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 
      6 declare i32 @FB()
      7 
      8 define i32 @FA() nounwind {
      9   ret i32 0
     10 }
     11 
     12 define i32 @main() nounwind {
     13   %r = call i32 @FB( )   ; <i32> [#uses=1]
     14   ret i32 %r
     15 }
     16