aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-elf/implib.s
blob: e4d527b22939163f796b73109ee63680bd030aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.ifndef NO_GLOBAL
	.comm	exported1,1

	.data
	.global	exported2
	.type	exported2, %object
	.size	exported2, 1
exported2:
	.byte	21
.endif

	.section ".bss", "aw", %nobits
not_exported1:
	.space	1
	.size	not_exported1, 1

	.data
	.type	not_exported2, %object
	.size	not_exported2, 1
not_exported2:
	.byte	42