mirror of
git://git.musl-libc.org/musl
synced 2024-12-18 04:34:50 +00:00
976c0fdcb5
this code has been replaced by portable C code that works on all archs. the old asm needs to be removed or ctors/dtors will run twice.
12 lines
119 B
ArmAsm
12 lines
119 B
ArmAsm
.section .init
|
|
pop {r0,lr}
|
|
tst lr,#1
|
|
moveq pc,lr
|
|
bx lr
|
|
|
|
.section .fini
|
|
pop {r0,lr}
|
|
tst lr,#1
|
|
moveq pc,lr
|
|
bx lr
|