mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-10 08:42:02 +03:00
16 lines
163 B
ArmAsm
16 lines
163 B
ArmAsm
.section .init
|
|
.align 2
|
|
.global _init
|
|
_init:
|
|
stwu 1,-32(1)
|
|
mflr 0
|
|
stw 0,36(1)
|
|
|
|
.section .fini
|
|
.align 2
|
|
.global _fini
|
|
_fini:
|
|
stwu 1,-32(1)
|
|
mflr 0
|
|
stw 0,36(1)
|