aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/Inline/2004-04-20-InlineLinkOnce.ll
blob: fabad30bb5ac782924e1e035686aef0e4d857e6e (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: opt < %s -inline -prune-eh -disable-output

define linkonce void @caller() {
        call void @callee( )
        ret void
}

define linkonce void @callee() {
        ret void
}