diff options
Diffstat (limited to 'gcc/crtstuff.c')
-rw-r--r-- | gcc/crtstuff.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c index d296ea9084b..362a2a60ef2 100644 --- a/gcc/crtstuff.c +++ b/gcc/crtstuff.c @@ -389,6 +389,10 @@ __do_global_ctors_aux () /* prologue goes in .text section */ asm (INIT_SECTION_ASM_OP); DO_GLOBAL_CTORS_BODY; ON_EXIT (__do_global_dtors, 0); +#ifdef FORCE_INIT_SECTION_ALIGN + FORCE_INIT_SECTION_ALIGN; +#endif + asm (TEXT_SECTION_ASM_OP); } /* epilogue and body go in .init section */ #endif /* OBJECT_FORMAT_ELF */ |