3 ; GAS defines r0
..r7 as aliases
for real registers
; we want the saddr
58 .macro START_ANOTHER_FUNC name
60 .type
\name
, @function
64 /* Start a function in its own section, so that it
65 can be subject to linker garbage collection. */
66 .macro START_FUNC name
67 .pushsection
.text
.\name
,"ax",@progbits
68 START_ANOTHER_FUNC
\name
71 .macro END_ANOTHER_FUNC name
72 .size
\name
, . - \name
75 /* End the function. Set the size. */
77 END_ANOTHER_FUNC
\name