Silence gcc warning.

This commit is contained in:
Alan Modra 2000-09-21 14:21:24 +00:00
parent 1badb539a7
commit e2eb67d9cb
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2000-09-21 Alan Modra <alan@linuxcare.com.au>
* ldwrite.c (clone_section): Silence gcc warnings.
2000-09-20 Alan Modra <alan@linuxcare.com.au>
* emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Handle

View file

@ -319,7 +319,11 @@ clone_section (abfd, s, name, count)
|| (n = bfd_make_section_anyway (abfd, sname)) == NULL
|| (h = bfd_link_hash_lookup (link_info.hash,
sname, true, true, false)) == NULL)
einfo (_("%F%P: clone section failed: %E\n"));
{
einfo (_("%F%P: clone section failed: %E\n"));
/* Silence gcc warnings. einfo exits, so we never reach here. */
return NULL;
}
/* Set up section symbol. */
h->type = bfd_link_hash_defined;