1; RUN: rm -rf %t && mkdir -p %t 2; RUN: llvm-as -o %t/bcsection.bc %s 3 4; RUN: llvm-mc -I=%t -filetype=obj -triple=x86_64-unknown-unknown -o %t/bcsection.bco %p/Inputs/bcsection.s 5; RUN: llvm-nm -no-llvm-bc %t/bcsection.bco | count 0 6; RUN: %gold -r -o %t/bcsection.o -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext %t/bcsection.bco 7; RUN: llvm-nm -no-llvm-bc %t/bcsection.o | FileCheck %s 8 9target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 10target triple = "x86_64-unknown-unknown" 11 12; CHECK: main 13define i32 @main() { 14 ret i32 0 15} 16