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