diff options
Diffstat (limited to 'gcc/config/arm/crti.asm')
| -rw-r--r-- | gcc/config/arm/crti.asm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/arm/crti.asm b/gcc/config/arm/crti.asm index 3799e92..f3741db 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 |
