aboutsummaryrefslogtreecommitdiffstats
path: root/test/Linker/2003-04-21-Linkage.ll
blob: 58493f9ecebcb6e2cf4f3017aac6b18fccbd64d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: echo "%X = linkonce global int 5  implementation linkonce int %foo() { ret int 7 }" | as > Output/%s.1.bc
; RUN: as < %s > Output/%s.2.bc
; RUN: link Output/%s.[12].bc 
%X = external global int 

implementation

declare int %foo() 

void %bar() {
	load int* %X
	call int %foo()
	ret void
}