From 2fb66d013fa96007ae358d925d03272207654c0e Mon Sep 17 00:00:00 2001 From: nickc Date: Thu, 29 Nov 2001 16:05:59 +0000 Subject: [PATCH] Mark _init and _fini as Thumb functions if compiled in thumb mode. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47441 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 6 ++++++ gcc/config/arm/crti.asm | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f0e9605d5c0..928e88cd300 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-11-29 Nick Clifton + + * config/arm/crti.asm (_init): Add .thumb_func if compiled + with -mthumb. + (_fini): Add .thumb_func if compiled with -mthumb. + 2001-11-28 Eric Christopher * config/mips/mips.c (override_options): Fix thinko in mips_tune diff --git a/gcc/config/arm/crti.asm b/gcc/config/arm/crti.asm index 3799e927f1e..f3741db2bed 100644 --- a/gcc/config/arm/crti.asm +++ b/gcc/config/arm/crti.asm @@ -57,6 +57,9 @@ .section ".init" .align 2 .global _init +#ifdef __thumb__ + .thumb_func +#endif _init: FUNC_START @@ -64,6 +67,9 @@ _init: .section ".fini" .align 2 .global _fini +#ifdef __thumb__ + .thumb_func +#endif _fini: FUNC_START -- 2.11.4.GIT