summaryrefslogtreecommitdiffstats
path: root/test/Linker/2003-04-21-Linkage.ll
blob: 31aace8e44c4b62b566077bfb5904552f30281d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN: echo {@X = linkonce global i32 5 \
; RUN:   define linkonce i32 @foo() \{ ret i32 7 \} } | llvm-as > %t.1.bc
; RUN: llvm-as %s -o %t.2.bc -f
; RUN: llvm-link %t.1.bc  %t.2.bc
@X = external global i32 

declare i32 @foo() 

define void @bar() {
	load i32* @X
	call i32 @foo()
	ret void
}

OpenPOWER on IntegriCloud