projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[oota-llvm.git]
/
test
/
Transforms
/
Inline
/
2004-04-20-InlineLinkOnce.ll
1
; RUN: opt < %s -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