projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d629a7c
)
* elflink.c (elf_section_complain_discarded): Don't complain in
author
Dave Anglin
<dave.anglin@nrc.ca>
Wed, 14 Jul 2004 20:07:41 +0000
(20:07 +0000)
committer
Dave Anglin
<dave.anglin@nrc.ca>
Wed, 14 Jul 2004 20:07:41 +0000
(20:07 +0000)
.PARISC.unwind.
bfd/ChangeLog
patch
|
blob
|
history
bfd/elflink.c
patch
|
blob
|
history
diff --git
a/bfd/ChangeLog
b/bfd/ChangeLog
index 8055cb199c86b1293981e6e655be88281ed765a0..db7ada4f1f9ae797298bc450423faab54e0731e2 100644
(file)
--- 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 1c1de27fc87b382ca000643dd4ac87f658665472..a6dafae2b11852dff30fda4cf1d8607ed10f854b 100644
(file)
--- 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;
}