brintos

brintos / llvm-project-archived public Read only

0
0
Text · 530 B · 3bac9bd Raw
17 lines · plain
1; RUN: %lli -jit-kind=mcjit -extra-module=%p/Inputs/cross-module-b.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null2; XFAIL: target={{.*-windows-(gnu|msvc)}}3; REQUIRES: thread_support4; UNSUPPORTED: target=powerpc64-unknown-linux-gnu5; Remove UNSUPPORTED for powerpc64-unknown-linux-gnu if problem caused by r266663 is fixed6 7declare i32 @FB()8 9define i32 @FA() nounwind {10  ret i32 011}12 13define i32 @main() nounwind {14  %r = call i32 @FB( )   ; <i32> [#uses=1]15  ret i32 %r16}17