repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[InstCombine] Signed saturation patterns
[llvm-complete.git]
/
test
/
ExecutionEngine
/
MCJIT
/
cross-module-a.ll
blob
5d4e16fa4a2e03666040b0062e5e1fd5322a8e99
1
; RUN: %lli -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