mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
205 B
15 lines
205 B
.section .init
|
|
.global _init
|
|
.type _init,%function
|
|
.align 2
|
|
_init:
|
|
stp x29,x30,[sp,-16]!
|
|
mov x29,sp
|
|
|
|
.section .fini
|
|
.global _fini
|
|
.type _fini,%function
|
|
.align 2
|
|
_fini:
|
|
stp x29,x30,[sp,-16]!
|
|
mov x29,sp
|
|
|