aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elflink.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 8055cb1..db7ada4 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2004-07-14 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
+
+ * elflink.c (elf_section_complain_discarded): Don't complain in
+ .PARISC.unwind.
+
2004-07-10 James E Wilson <wilson@specifixinc.com>
* elfxx-ia64.c (elfNN_ia64_relax_ldxmov): Remove abfd parameter.
diff --git a/bfd/elflink.c b/bfd/elflink.c
index 1c1de27..a6dafae 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -6316,6 +6316,9 @@ elf_section_complain_discarded (asection *sec)
if (strcmp (".gcc_except_table", sec->name) == 0)
return FALSE;
+ if (strcmp (".PARISC.unwind", sec->name) == 0)
+ return FALSE;
+
return TRUE;
}