repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
slightly increase prettiness.
[llvm/avr.git]
/
test
/
Linker
/
2003-04-21-Linkage.ll
blob
f6d4c4b03b7ff62b1d37a416fe774d17b146cfa9
1
; RUN: echo {@X = linkonce global i32 5 \
2
; RUN: define linkonce i32 @foo() \{ ret i32 7 \} } | llvm-as > %t.1.bc
3
; RUN: llvm-as %s -o %t.2.bc
4
; RUN: llvm-link %t.1.bc %t.2.bc
5
@X = external global i32
6
7
declare i32 @foo()
8
9
define void @bar() {
10
load i32* @X
11
call i32 @foo()
12
ret void
13
}
14