diff options
author | jules <jules@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-29 14:09:45 +0000 |
---|---|---|
committer | jules <jules@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-29 14:09:45 +0000 |
commit | d24bc14583aaf3a0edb93267bffb5b240252d87c (patch) | |
tree | a069a1c7e66dac7e1d042f7a22530125e2918422 /gcc/doc | |
parent | c828481ae6866cf54f3fe408e82e81d93c38b6d6 (diff) | |
download | gcc-d24bc14583aaf3a0edb93267bffb5b240252d87c.tar.gz |
* crtstuff.c: Handle targets that use .init_array.
* function.c (HAS_INIT_SECTION): Do not define. Instead, make sure
that INVOKE__main is set correctly.
(expand_main_function): Test INVOKE__main.
* libgcc2.c: Do not define __main when using .init_array.
* config/arm/arm.c (arm_elf_asm_constructor): New function.
* config/arm/arm.h (CTORS_SECTION_ASM_OP): Define, with specialized
libgcc version.
(DTORS_SECTION_ASM_OP): Likewise.
(CTOR_LIST_BEGIN): Define specially when in libgcc.
(CTOR_LIST_END): Likewise.
(DTOR_LIST_BEGIN): Likewise.
(DTOR_LIST_END): Likewise.
* config/arm/bpapi.h (INIT_SECTION_ASM_OP): Do not define it.
(FINI_SECTION_ASM_OP): Likewise.
(INIT_ARRAY_SECTION_ASM_OP): Define.
(FINI_ARRAY_SECTION_ASM_OP): Likewise.
* config/arm/elf.h (TARGET_ASM_CONSTRUCTOR): Define.
(SUPPORTS_INIT_PRIORITY): Evaluate to false for EABI based targets.
* doc/tm.texi (INIT_ARRAY_SECTION_ASM_OP): Document.
(FINI_ARRAY_SECTION_ASM_OP): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98986 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/tm.texi | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 514f59d5bbe..4c883f43384 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -6019,6 +6019,22 @@ finalization code. If not defined, GCC will assume such a section does not exist. @end defmac +@defmac INIT_ARRAY_SECTION_ASM_OP +If defined, a C expression whose value is a string, including spacing, +containing the assembler operation to identify the following data as +part of the @code{.init_array} (or equivalent) section. If not +defined, GCC will assume such a section does not exist. Do not define +both this macro and @code{INIT_SECTION_ASM_OP}. +@end defmac + +@defmac FINI_ARRAY_SECTION_ASM_OP +If defined, a C expression whose value is a string, including spacing, +containing the assembler operation to identify the following data as +part of the @code{.fini_array} (or equivalent) section. If not +defined, GCC will assume such a section does not exist. Do not define +both this macro and @code{FINI_SECTION_ASM_OP}. +@end defmac + @defmac CRT_CALL_STATIC_FUNCTION (@var{section_op}, @var{function}) If defined, an ASM statement that switches to a different section via @var{section_op}, calls @var{function}, and switches back to |