1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 07:22:55 +01:00
llvm-mirror/test/Linker/2003-04-23-LinkOnceLost.ll

12 lines
304 B
LLVM
Raw Normal View History

2003-04-23 20:38:24 +02:00
; This fails because the linker renames the non-opaque type not the opaque
; one...
; RUN: echo " define linkonce void @foo() { ret void } " | \
; RUN: llvm-as -o %t.2.bc
; RUN: llvm-as %s -o %t.1.bc
; RUN: llvm-link %t.1.bc %t.2.bc -S | FileCheck %s
; CHECK: linkonce{{.*}}foo
declare void @foo()
2003-04-23 20:38:24 +02:00