[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / ExecutionEngine / MCJIT / cross-module-sm-pic-a.ll
blob5281b67ee28026dcde49befd570dd37e7d22bf7b
1 ; RUN: %lli -jit-kind=mcjit -extra-module=%p/Inputs/cross-module-b.ll -relocation-model=pic -code-model=small %s > /dev/null
2 ; RUN: %lli -lljit-platform=Inactive -extra-module=%p/Inputs/cross-module-b.ll -relocation-model=pic -code-model=small %s > /dev/null
3 ; XFAIL: target={{(mips|mipsel)-.*}}, target={{(i686|i386).*}}
5 declare i32 @FB()
7 define i32 @FA() {
8   ret i32 0
11 define i32 @main() {
12   %r = call i32 @FB( )   ; <i32> [#uses=1]
13   ret i32 %r