blob: 28300e709df8c132ac4e9ef0ab73cf8107a3bf5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
.file "func1.c"
.text
.macro fcn, name
.def \name
.scl 3 /* C_STAT */
.type 32 /* DT_FUNC */
.endef
\name:
.endm
fcn inner
.nop
fcn outer
.nop
.nop
.global test
fcn test
.nop
.nop
.nop
|