1// REQUIRES: x86
2// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
3// RUN: ld.lld %t.o -o /dev/null -Map=- --gc-sections | FileCheck %s
4
5.section .tbss,"awT",@nobits
6// CHECK-NOT: foo
7.globl foo
8foo:
9.align 8
10.long 0
11