diff options
author | Alan Modra <amodra@gmail.com> | 2008-10-20 12:14:29 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-10-20 12:14:29 +0000 |
commit | c2edb4b89e374c7bca0c929dbab444928520a182 (patch) | |
tree | 68b715d8e99733a237dbb558b68c9a362dced8fe /ld/emultempl/elf32.em | |
parent | 7d9616d7565ebf44ce849f24f42fd11f7f0b10f7 (diff) | |
download | gdb-c2edb4b89e374c7bca0c929dbab444928520a182.zip gdb-c2edb4b89e374c7bca0c929dbab444928520a182.tar.gz gdb-c2edb4b89e374c7bca0c929dbab444928520a182.tar.bz2 |
* ldemul.h (ldemul_place_orphan): Update prototype.
(struct ld_emulation_xfer_struct <place_orphan>): Likewise.
* ldemul.c (ldemul_place_orphan): Return pointer to output
section statement.
* emultempl/beos.em (gld${EMULATION_NAME}_place_orphan): Likewise.
* emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Likewise.
* emultempl/mmo.em (mmo_place_orphan): Likewise.
* emultempl/pe.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
* emultempl/pep.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
Diffstat (limited to 'ld/emultempl/elf32.em')
-rw-r--r-- | ld/emultempl/elf32.em | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index 7eb4e28..e1e7420 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -62,7 +62,7 @@ fragment <<EOF static void gld${EMULATION_NAME}_before_parse (void); static void gld${EMULATION_NAME}_after_open (void); static void gld${EMULATION_NAME}_before_allocation (void); -static bfd_boolean gld${EMULATION_NAME}_place_orphan +static lang_output_section_statement_type *gld${EMULATION_NAME}_place_orphan (asection *, const char *, int); static void gld${EMULATION_NAME}_finish (void); @@ -1635,7 +1635,7 @@ output_rel_find (asection *sec, int isdyn) /* Place an orphan section. We use this to put random SHF_ALLOC sections in the right segment. */ -static bfd_boolean +static lang_output_section_statement_type * gld${EMULATION_NAME}_place_orphan (asection *s, const char *secname, int constraint) @@ -1723,7 +1723,7 @@ gld${EMULATION_NAME}_place_orphan (asection *s, set, then it has been created by the linker, probably as a result of a --section-start command line switch. */ lang_add_section (&os->children, s, os); - return TRUE; + return os; } if (!orphan_init_done) @@ -1746,9 +1746,9 @@ gld${EMULATION_NAME}_place_orphan (asection *s, && CONST_STRNEQ (s->name, ".gnu.warning.") && hold[orphan_text].os != NULL) { - lang_add_section (&hold[orphan_text].os->children, s, - hold[orphan_text].os); - return TRUE; + os = hold[orphan_text].os; + lang_add_section (&os->children, s, os); + return os; } /* Decide which segment the section should go in based on the @@ -1798,9 +1798,7 @@ gld${EMULATION_NAME}_place_orphan (asection *s, after = &lang_output_section_statement.head->output_section_statement; } - lang_insert_orphan (s, secname, constraint, after, place, NULL, NULL); - - return TRUE; + return lang_insert_orphan (s, secname, constraint, after, place, NULL, NULL); } EOF fi |