musl/crt/mips/crti.s
Rich Felker 32e7bd78ae align mips _init/_fini functions
since .init and .fini are not .text, the toolchain does not seem to
align them for code by default. this yields random breakage depending
on the object sizes the linker is dealing with.
2012-08-05 14:12:10 -04:00

18 lines
205 B
ArmAsm

.set noreorder
.section .init
.global _init
.align 2
_init:
subu $sp,$sp,32
sw $gp,24($sp)
sw $ra,28($sp)
.section .fini
.global _fini
.align 2
_fini:
subu $sp,$sp,32
sw $gp,24($sp)
sw $ra,28($sp)