1 ; RUN: llc %s -o %t.s 2 ; RUN: llvm-mc %t.s -o %t.o -filetype=obj 3 ; RUN: llvm-as %p/Inputs/drop-linkage.ll -o %t2.o 4 5 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \ 6 ; RUN: --plugin-opt=emit-llvm \ 7 ; RUN: -shared %t.o %t2.o -o %t3.o 8 ; RUN: llvm-dis %t3.o -o - | FileCheck %s 9 10 define void @foo() { 11 ret void 12 } 13 14 ; CHECK: declare void @foo() 15