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
[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git]
/
llvm
/
test
/
Transforms
/
Inline
/
2004-04-20-InlineLinkOnce.ll
blob
d194ab062e042fecd3505406574e85abd9c0a0aa
1
; RUN: opt < %s -inline -prune-eh -disable-output -enable-new-pm=0
2
3
define linkonce void @caller() {
4
call void @callee( )
5
ret void
6
}
7
8
define linkonce void @callee() {
9
ret void
10
}
11