mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-09 00:02:17 +03: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)
|