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 tests. NFC
[llvm-core.git]
/
test
/
Linker
/
only-needed-recurse.ll
blob
dcb99e91eefc77d38e7014d47ed04b9c9e34a51e
1
; RUN: llvm-link -S -only-needed %s %p/Inputs/only-needed-recurse.ll | FileCheck %s
2
3
declare void @f2()
4
5
define void @f1() {
6
call void @f2()
7
ret void
8
}
9
10
; CHECK: define void @f3
11