repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
llvm
/
test
/
ExecutionEngine
/
MCJIT
/
cross-module-a.ll
blob
ca0ab6367fe803a4995a3530c14ecebb4c72235c
1
; RUN: %lli -jit-kind=mcjit -extra-module=%p/Inputs/cross-module-b.ll %s > /dev/null
2
; RUN: %lli -extra-module=%p/Inputs/cross-module-b.ll %s > /dev/null
3
4
declare i32 @FB()
5
6
define i32 @FA() {
7
ret i32 0
8
}
9
10
define i32 @main() {
11
%r = call i32 @FB( ) ; <i32> [#uses=1]
12
ret i32 %r
13
}
14