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
[InstCombine] Signed saturation patterns
[llvm-core.git]
/
test
/
ExecutionEngine
/
MCJIT
/
cross-module-sm-pic-a.ll
blob
04331990db338dbc93db722dac8c7616d3dcf2af
1
; RUN: %lli -extra-module=%p/Inputs/cross-module-b.ll -relocation-model=pic -code-model=small %s > /dev/null
2
; XFAIL: mips-, mipsel-, i686, i386
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