blob: 2d3136357bd3169462e173c12adde3d9f704e1ba [file] [log] [blame]
Robert Sloan8ff03552017-06-14 12:40:58 -07001 .text
2 movq %rax, %rax
3
4 # BSS declarations emit accessors.
5 .comm aes_128_ctr_generic_storage,64,32
6 .lcomm aes_128_ctr_generic_storage2,64,32
7
8 # BSS symbols may also be emitted in .bss sections.
9 .section .bss,"awT",@nobits
10 .align 4
11 .globl x
12 .type x, @object
13 .size x, 4
14x:
15 .zero 4
16.Llocal:
17 .quad 0
18 .size .Llocal, 4
19
20 # .bss handling is terminated by a .text directive.
21 .text
22 .section .bss,"awT",@nobits
23y:
24 .quad 0
25
26 # Or a .section directive.
27 .section .rodata
28 .quad 0
29
30 # Or the end of the file.
31 .section .bss,"awT",@nobits
32z:
33 .quad 0