mirror of
git://git.musl-libc.org/musl
synced 2024-12-24 23:52:48 +00:00
967bcbf67c
otherwise disassemblers treat it as data.
20 lines
249 B
ArmAsm
20 lines
249 B
ArmAsm
.set noreorder
|
|
|
|
.section .init
|
|
.global _init
|
|
.type _init,@function
|
|
.align 2
|
|
_init:
|
|
subu $sp,$sp,32
|
|
sw $gp,24($sp)
|
|
sw $ra,28($sp)
|
|
|
|
.section .fini
|
|
.global _fini
|
|
.type _fini,@function
|
|
.align 2
|
|
_fini:
|
|
subu $sp,$sp,32
|
|
sw $gp,24($sp)
|
|
sw $ra,28($sp)
|