diff options
author | Richard Sandiford <richard@codesourcery.com> | 2005-12-10 00:22:11 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2005-12-10 00:22:11 +0000 |
commit | 98bfa2fb8363218653eae38c90c6097b2bc7ce6b (patch) | |
tree | cea5285063abb408a364b1d36c60e165b2e9fc15 /gcc/varasm.c | |
parent | 0f67af1ce30cdee9273baa65166fabbcb6eb04b8 (diff) | |
download | gcc-98bfa2fb8363218653eae38c90c6097b2bc7ce6b.zip gcc-98bfa2fb8363218653eae38c90c6097b2bc7ce6b.tar.gz gcc-98bfa2fb8363218653eae38c90c6097b2bc7ce6b.tar.bz2 |
output.h (init_section, [...]): Delete.
* output.h (init_section, fini_section): Delete.
* varasm.c (init_section, fini_section): Delete.
(init_varasm_once): Don't initialize them.
* doc/tm.texi (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP): Say that
there are no corresponding varasm.c variables.
From-SVN: r108338
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 244d6d8..fe52314 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -152,8 +152,6 @@ section *ctors_section; section *dtors_section; section *bss_section; section *sbss_section; -section *init_section; -section *fini_section; /* The section that holds the main exception table, when known. The section is set either by the target's init_sections hook or by the first call to @@ -4857,16 +4855,6 @@ init_varasm_once (void) SBSS_SECTION_ASM_OP); #endif -#ifdef INIT_SECTION_ASM_OP - init_section = get_unnamed_section (SECTION_CODE, output_section_asm_op, - INIT_SECTION_ASM_OP); -#endif - -#ifdef FINI_SECTION_ASM_OP - fini_section = get_unnamed_section (SECTION_CODE, output_section_asm_op, - FINI_SECTION_ASM_OP); -#endif - targetm.asm_out.init_sections (); if (readonly_data_section == NULL) |