summaryrefslogtreecommitdiff
path: root/binutils/testsuite/binutils-all/localize-hidden-1.s
blob: cb9f367e5400e81ca5ba0021378d8f007d2811d4 (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
34
35
36
	.globl		Gdefault
	.globl		Ghidden
	.globl		Ginternal
	.globl		Gprotected

	.weak		Wdefault
	.weak		Whidden
	.weak		Winternal
	.weak		Wprotected

	.hidden		Lhidden
	.hidden		Ghidden
	.hidden		Whidden

	.internal	Linternal
	.internal	Ginternal
	.internal	Winternal

	.protected	Lprotected
	.protected	Gprotected
	.protected	Wprotected

	Ldefault == 0x1100
	Lhidden == 0x1200
	Linternal == 0x1300
	Lprotected == 0x1400

	Gdefault == 0x2100
	Ghidden == 0x2200
	Ginternal == 0x2300
	Gprotected == 0x2400

	Wdefault == 0x3100
	Whidden == 0x3200
	Winternal == 0x3300
	Wprotected == 0x3400