[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Linker / 2003-04-23-LinkOnceLost.ll
blobe2b600c877c06569d30db8e626d9fade49bd239f
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
5 declare void @foo()
7 define void @use_foo() {
8   call void @foo()
9   ret void