mirror of
git://git.musl-libc.org/musl
synced 2024-12-24 23:52:48 +00:00
5972c4a411
based on patch submitted by Jaydeep Patil, with minor changes.
19 lines
256 B
ArmAsm
19 lines
256 B
ArmAsm
.set noreorder
|
|
.section .init
|
|
.global _init
|
|
.type _init,@function
|
|
.align 2
|
|
_init:
|
|
subu $sp, $sp, 32
|
|
sd $gp, 16($sp)
|
|
sd $ra, 24($sp)
|
|
|
|
.section .fini
|
|
.global _fini
|
|
.type _fini,@function
|
|
.align 2
|
|
_fini:
|
|
subu $sp, $sp, 32
|
|
sd $gp, 16($sp)
|
|
sd $ra, 24($sp)
|