summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2002-06-10 16:10:43 +0000
committerRichard Sandiford <rdsandiford@googlemail.com>2002-06-10 16:10:43 +0000
commit0ebaf18527d124cb0cde59192c5fd7c352b22cd4 (patch)
treecfbbf7f86e191d2d923f592c2512322f661e3f63
parentebe3e2d199ce2c10fd27188855194170edd098cf (diff)
downloadbinutils-gdb-0ebaf18527d124cb0cde59192c5fd7c352b22cd4.tar.gz
* section.c (_bfd_strip_section_from_output): Set SEC_EXCLUDE
for removed output sections.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/section.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 1dfc78df4dd..fd439709c0f 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2002-06-10 Richard Sandiford <rsandifo@redhat.com>
+
+ * section.c (_bfd_strip_section_from_output): Set SEC_EXCLUDE
+ for removed output sections.
+
2002-06-10 Geoffrey Keating <geoffk@redhat.com>
* merge.c (merge_strings): Use htab_create_alloc with calloc, not
diff --git a/bfd/section.c b/bfd/section.c
index 96130b9d3fb..8bb85c890f3 100644
--- a/bfd/section.c
+++ b/bfd/section.c
@@ -1368,6 +1368,7 @@ _bfd_strip_section_from_output (info, s)
if (*spp == os)
{
bfd_section_list_remove (os->owner, spp);
+ os->flags |= SEC_EXCLUDE;
os->owner->section_count--;
break;
}