aboutsummaryrefslogtreecommitdiff
path: root/binutils/testsuite/binutils-all/nm-coff-sdef-1.s
blob: f1a10bb6a504459429e351a081a46d56a9b16209 (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
	.globl text_symbol1
	.globl text_symbol2
	.globl text_symbol3
	.macro ENDFN name:req
	.sdef \name
	.type 0x20	/* DT_FUNC */
	.scl 2		/* C_EXT */
	.endef
	.sdef \name
	.scl 0xff	/* C_EFCN */
	.val .
	.endef
	.endm
	.text
text_symbol1:
	.byte 0,0,0,0
	.byte 0,0,0,0
	.byte 0,0,0,0
	ENDFN text_symbol1
text_symbol2:
	.byte 0,0,0,0
	.byte 0,0,0,0
	ENDFN text_symbol2
text_symbol3:
	.byte 0,0,0,0
	ENDFN text_symbol3