summaryrefslogtreecommitdiff
path: root/src/util/fipstools/delocate/testdata/x86_64-BSS/in.s
blob: 2d3136357bd3169462e173c12adde3d9f704e1ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
	.text
	movq %rax, %rax
	
	# BSS declarations emit accessors.
	.comm	aes_128_ctr_generic_storage,64,32
	.lcomm	aes_128_ctr_generic_storage2,64,32
	
	# BSS symbols may also be emitted in .bss sections.
	.section .bss,"awT",@nobits
	.align 4
	.globl x
	.type   x, @object
	.size   x, 4
x:
	.zero 4
.Llocal:
	.quad 0
	.size .Llocal, 4

	# .bss handling is terminated by a .text directive.
	.text
	.section .bss,"awT",@nobits
y:
	.quad 0

	# Or a .section directive.
	.section .rodata
	.quad 0

	# Or the end of the file.
	.section .bss,"awT",@nobits
z:
	.quad 0