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

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

define linkonce void @callee() {
        ret void
}