diff options
author | Alan Modra <amodra@gmail.com> | 2008-10-04 06:08:59 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-10-04 06:08:59 +0000 |
commit | 8a99a385a72553a657a1238d310f94bafad182be (patch) | |
tree | 900f06409b15b8c0b6a3fb6b6c1551c883b7e37f /ld/ldemul.h | |
parent | 2605c5df34a43fcbd60dcb4d974938022baae1ce (diff) | |
download | gdb-8a99a385a72553a657a1238d310f94bafad182be.zip gdb-8a99a385a72553a657a1238d310f94bafad182be.tar.gz gdb-8a99a385a72553a657a1238d310f94bafad182be.tar.bz2 |
* ldemul.c (ldemul_place_orphan): Add "constraint" param.
* ldemul.h (ldemul_place_orphan): Update prototype.
(struct ld_emulation_xfer_struct <place_orphan>): Likewise add param.
* ldlang.c (unique_section_p): Make static.
(lang_output_section_statement_lookup): Optimise creation of SPECIAL
sections.
(lang_insert_orphan): Add "constraint" param. Pass to
lang_enter_output_section_statement.
(init_os): Don't use an existing bfd section for SPECIAL sections.
(lang_place_orphans): Don't rename unique output sections, instead
mark their output section statements SPECIAL.
* ldlang.h (lang_insert_orphan): Update prototype.
(unique_section_p): Delete.
* emultempl/beos.em (place_orphan): Add "constraint" param.
* emultempl/elf32.em (place_orphan): Likewise. Don't match existing
output sections if set.
* emultempl/pe.em (place_orphan): Likewise.
* emultempl/pep.em (place_orphan): Likewise.
* emultempl/mmo.em (mmo_place_orphan): Update.
* emultempl/spuelf.em (spu_place_special_section): Update.
Diffstat (limited to 'ld/ldemul.h')
-rw-r--r-- | ld/ldemul.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/ldemul.h b/ld/ldemul.h index 6c95a9d..6561258 100644 --- a/ld/ldemul.h +++ b/ld/ldemul.h @@ -59,7 +59,7 @@ extern void ldemul_set_symbols extern void ldemul_create_output_section_statements (void); extern bfd_boolean ldemul_place_orphan - (asection *, const char *); + (asection *, const char *, int); extern bfd_boolean ldemul_parse_args (int, char **); extern void ldemul_add_options @@ -152,7 +152,7 @@ typedef struct ld_emulation_xfer_struct { the default action should be taken. This field may be NULL, in which case the default action will always be taken. */ bfd_boolean (*place_orphan) - (asection *, const char *); + (asection *, const char *, int); /* Run after assigning parsing with the args, but before reading the script. Used to initialize symbols used in the script. */ |