From c2edb4b89e374c7bca0c929dbab444928520a182 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 20 Oct 2008 12:14:29 +0000 Subject: * ldemul.h (ldemul_place_orphan): Update prototype. (struct ld_emulation_xfer_struct ): 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. --- ld/emultempl/beos.em | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ld/emultempl/beos.em') diff --git a/ld/emultempl/beos.em b/ld/emultempl/beos.em index 2777be8..e417693 100644 --- a/ld/emultempl/beos.em +++ b/ld/emultempl/beos.em @@ -664,7 +664,7 @@ gld_${EMULATION_NAME}_before_allocation (void) but I'm leaving this here in case we want to enable it for sections which are not mentioned in the linker script. */ -static bfd_boolean +static lang_output_section_statement_type * gld${EMULATION_NAME}_place_orphan (asection *s, const char *secname, int constraint) @@ -674,21 +674,21 @@ gld${EMULATION_NAME}_place_orphan (asection *s, lang_statement_union_type *l; if ((s->flags & SEC_ALLOC) == 0) - return FALSE; + return NULL; /* Don't process grouped sections unless doing a final link. If they're marked as COMDAT sections, we don't want .text\$foo to end up in .text and then have .text disappear because it's marked link-once-discard. */ if (link_info.relocatable) - return FALSE; + return NULL; /* Everything from the '\$' on gets deleted so don't allow '\$' as the first character. */ if (*secname == '\$') einfo ("%P%F: section %s has '\$' as first character\n", secname); if (strchr (secname + 1, '\$') == NULL) - return FALSE; + return NULL; /* Look up the output section. The Microsoft specs say sections names in image files never contain a '\$'. Fortunately, lang_..._lookup creates @@ -726,7 +726,7 @@ gld${EMULATION_NAME}_place_orphan (asection *s, sort_sections. */ lang_add_section (&l->wild_statement.children, s, os); - return TRUE; + return os; } static char * -- cgit v1.1