1# REQUIRES: x86
2# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t
3# RUN: ld.lld %t -o %tout
4# RUN: llvm-nm %tout | FileCheck %s
5
6# CHECK:      w _start
7# CHECK-NEXT: T foo
8
9.global foo
10.weak _start
11.text
12foo:
13	.dc.a _start
14