repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[llvm-exegesis][NFC] Improve parsing of the YAML files
[llvm-core.git]
/
test
/
ExecutionEngine
/
OrcMCJIT
/
cross-module-a.ll
blob
451b2662ddf9241d429ffdd251d24ce98ee3747f
1
; RUN: %lli -jit-kind=orc-mcjit -extra-module=%p/Inputs/cross-module-b.ll %s > /dev/null
2
3
declare i32 @FB()
4
5
define i32 @FA() {
6
ret i32 0
7
}
8
9
define i32 @main() {
10
%r = call i32 @FB( ) ; <i32> [#uses=1]
11
ret i32 %r
12
}
13