* elflink.c (elf_section_complain_discarded): Ignore .fixup.

This commit is contained in:
Alan Modra 2004-08-16 01:17:58 +00:00
parent 45fc9e4ac6
commit 327c1315a0
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-08-16 Alan Modra <amodra@bigpond.net.au>
* elflink.c (elf_section_complain_discarded): Ignore .fixup.
2004-08-16 Alan Modra <amodra@bigpond.net.au>
* bfd.c (_bfd_default_error_handler): Account for doubled '%' in

View File

@ -6337,6 +6337,9 @@ elf_section_complain_discarded (asection *sec)
if (strcmp (".PARISC.unwind", sec->name) == 0)
return FALSE;
if (strcmp (".fixup", sec->name) == 0)
return FALSE;
return TRUE;
}