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

implementation

linkonce void %caller() {
	call void %callee()
	ret void
}

linkonce void %callee() {
	ret void
}