brintos

brintos / llvm-project-archived public Read only

0
0
Text · 487 B · 5baf395 Raw
18 lines · plain
1; RUN: llc %s -o %t.s2; RUN: llvm-mc %t.s -o %t.o -filetype=obj -triple=x86_64-unknown-linux-gnu3; RUN: llvm-as %p/Inputs/drop-linkage.ll -o %t2.o4 5; RUN: %gold -plugin %llvmshlibdir/LLVMgold%shlibext \6; RUN:    --plugin-opt=emit-llvm \7; RUN:    -shared %t.o %t2.o -o %t3.o8; RUN: llvm-dis %t3.o -o - | FileCheck %s9 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 void15}16 17; CHECK: declare void @foo()18