summaryrefslogtreecommitdiff
path: root/ld/ldemul.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2008-10-04 06:08:59 +0000
committerAlan Modra <amodra@bigpond.net.au>2008-10-04 06:08:59 +0000
commit30c4559475af0fd2dbacf345f75261d567a9a665 (patch)
tree0263a5d31d73bfa6881dd6e33c8533dc27442459 /ld/ldemul.c
parente0973adb53ed73897df96d889e9f6aa0e9af9560 (diff)
downloadbinutils-redhat-30c4559475af0fd2dbacf345f75261d567a9a665.tar.gz
* 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.c')
-rw-r--r--ld/ldemul.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/ldemul.c b/ld/ldemul.c
index 68e1de2621..567e8ac2cd 100644
--- a/ld/ldemul.c
+++ b/ld/ldemul.c
@@ -120,10 +120,10 @@ ldemul_open_dynamic_archive (const char *arch, search_dirs_type *search,
}
bfd_boolean
-ldemul_place_orphan (asection *s, const char *name)
+ldemul_place_orphan (asection *s, const char *name, int constraint)
{
if (ld_emulation->place_orphan)
- return (*ld_emulation->place_orphan) (s, name);
+ return (*ld_emulation->place_orphan) (s, name, constraint);
return FALSE;
}