1; RUN: llc %s -o %t.s 2; RUN: llvm-mc %t.s -o %t.o -filetype=obj -triple=x86_64-unknown-linux-gnu 3; RUN: llvm-as %p/Inputs/drop-linkage.ll -o %t2.o 4 5; RUN: %gold -plugin %llvmshlibdir/LLVMgold%shlibext \ 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 10target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 11target triple = "x86_64-unknown-linux-gnu" 12 13define void @foo() { 14 ret void 15} 16 17; CHECK: declare void @foo() 18