summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/elflink.c3
2 files changed, 7 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 6d38dbb66f..4bfcd1e7c5 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,9 @@
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
free space available.
diff --git a/bfd/elflink.c b/bfd/elflink.c
index 346e828e04..00fa46887e 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -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;
}