repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' into msp430
[llvm/msp430.git]
/
test
/
Transforms
/
Inline
/
2004-04-20-InlineLinkOnce.ll
blob
d9f09a06e7dadfcc5cc31669947cc85a3e6d0548
1
; RUN: llvm-as < %s | opt -inline -prune-eh -disable-output
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