summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2005-03-18 15:46:25 +0000
committerH.J. Lu <hjl@lucon.org>2005-03-18 15:46:25 +0000
commit5a54e07d833dd3b5425762ceeeed38beef2b5116 (patch)
tree108090063adeeb7cbdde62dafa01151c675be27b
parente9bea843d7756dec9c1abc298a160a44ae1d4397 (diff)
downloadgdb-5a54e07d833dd3b5425762ceeeed38beef2b5116.tar.gz
2005-03-18 H.J. Lu <hongjiu.lu@intel.com>
* elflink.c (elf_mark_used_section): Check bfd_is_const_section for special sections.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elflink.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index dd8612d452c..010c9003515 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-18 H.J. Lu <hongjiu.lu@intel.com>
+
+ * elflink.c (elf_mark_used_section): Check bfd_is_const_section
+ for special sections.
+
2005-03-18 Alan Modra <amodra@bigpond.net.au>
* elf-bfd.h (_bfd_elf_link_renumber_dynsyms): Delete.
diff --git a/bfd/elflink.c b/bfd/elflink.c
index 0bb49ea1c8d..1ddfe182c61 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -9012,7 +9012,9 @@ elf_mark_used_section (struct elf_link_hash_entry *h,
|| h->root.type == bfd_link_hash_defweak)
{
asection *s = h->root.u.def.section;
- if (s != NULL && s->output_section != NULL && s->output_section != s)
+ if (s != NULL
+ && s->output_section != NULL
+ && !bfd_is_const_section (s->output_section))
s->output_section->flags |= SEC_KEEP;
}