1// RUN: llvm-mc -triple=aarch64-none-linux-gnu -filetype=obj %s | llvm-nm --special-syms - | FileCheck %s
2
3    .text
4// $x at 0x0000
5    add w0, w0, w0
6// $d at 0x0004
7    .ascii "012"
8    .byte 1
9    .hword 2
10    .word 4
11    .xword 8
12    .single 4.0
13    .double 8.0
14    .space 10
15    .zero 3
16    .fill 10, 2, 42
17    .org 100, 12
18// $x at 0x0018
19    add x0, x0, x0
20
21// CHECK:      0000000000000004 t $d.1
22// CHECK-NEXT: 0000000000000000 t $x.0
23// CHECK-NEXT: 0000000000000064 t $x.2
24