From 8e2a54f64d7603ff30998aadd17ebaf264347ddf Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 29 Sep 2005 22:43:31 +0000 Subject: Add .type _init/_fini unconditionally to arm/crt1.S --- libc/sysdeps/linux/arm/crt1.S | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'libc/sysdeps/linux/arm/crt1.S') diff --git a/libc/sysdeps/linux/arm/crt1.S b/libc/sysdeps/linux/arm/crt1.S index 0486699a7..987c52936 100644 --- a/libc/sysdeps/linux/arm/crt1.S +++ b/libc/sysdeps/linux/arm/crt1.S @@ -79,7 +79,9 @@ ARM register quick reference: .text .globl _start - .type _start,#function + .type _start,%function + .type _init,%function + .type _fini,%function #ifndef __UCLIBC_CTOR_DTOR__ .weak _init .weak _fini @@ -139,9 +141,6 @@ _start: .word _fini(GOT) .word _init(GOT) .word main(GOT) -#else - .type _init,%function - .type _fini,%function #endif /* Define a symbol for the first piece of initialized data. */ -- cgit v1.2.3