blob: 3996cc40b77a9c544954509fcbf7be534dcd9be8 [file] [log] [blame]
Chris Lattner961b0582003-04-23 18:38:24 +00001; This fails because the linker renames the non-opaque type not the opaque
2; one...
3
Reid Spencer73e70822006-12-29 20:01:32 +00004; RUN: echo "implementation linkonce void %foo() { ret void } " | llvm-upgrade|\
5; RUN: llvm-as -o %t.2.bc -f
6; RUN: llvm-upgrade < %s | llvm-as -o %t.1.bc -f
Misha Brukmanb6cb66f2003-09-15 20:04:28 +00007; RUN: llvm-link %t.[12].bc | llvm-dis | grep foo | grep linkonce
Chris Lattner961b0582003-04-23 18:38:24 +00008
9declare void %foo()