mirror of
git://git.musl-libc.org/musl
synced 2025-02-14 18:07:03 +00:00
without explicit alignment directives, whether they end up at the necessary alignment depends on linker/linking conditions. initially reported as mold issue 1255.
16 lines
205 B
ArmAsm
16 lines
205 B
ArmAsm
.section .init
|
|
.global _init
|
|
.type _init,%function
|
|
.align 2
|
|
_init:
|
|
stp x29,x30,[sp,-16]!
|
|
mov x29,sp
|
|
|
|
.section .fini
|
|
.global _fini
|
|
.type _fini,%function
|
|
.align 2
|
|
_fini:
|
|
stp x29,x30,[sp,-16]!
|
|
mov x29,sp
|