From 976c0fdcb55fafc55682d86441e5293d8aa5259d Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 21 Jul 2013 03:48:35 -0400 Subject: remove init/fini array asm from arm crti/crtn files 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. --- crt/arm/crti.s | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) (limited to 'crt/arm/crti.s') diff --git a/crt/arm/crti.s b/crt/arm/crti.s index 35ae6ae6..0d479cd2 100644 --- a/crt/arm/crti.s +++ b/crt/arm/crti.s @@ -1,29 +1,9 @@ .section .init .global _init _init: - push {r0,r1,r2,r4,r5,lr} - -.weak __fini_array_start -.weak __fini_array_end -.hidden __fini_array_start -.hidden __fini_array_end + push {r0,lr} .section .fini .global _fini _fini: - push {r4,r5,r6,lr} - adr lr, 1f - ldr r4, 2f - ldr r5, 2f+4 - add r4, r4, lr - add r5, r5, lr -1: adr lr, 1b - cmp r4, r5 - beq 3f - ldmia r4!, {r3} - tst r3,#1 - moveq pc,r3 - bx r3 -2: .word __fini_array_start-1b - .word __fini_array_end-1b -3: + push {r0,lr} -- cgit v1.2.1