repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Better OR's for MVE compares
[llvm-core.git]
/
test
/
Linker
/
2003-04-23-LinkOnceLost.ll
blob
e2b600c877c06569d30db8e626d9fade49bd239f
1
; RUN: echo " define linkonce void @foo() { ret void } " > %t.ll
2
; RUN: llvm-link %s %t.ll -S | FileCheck %s
3
; CHECK: linkonce{{.*}}foo
4
5
declare void @foo()
6
7
define void @use_foo() {
8
call void @foo()
9
ret void
10
}