diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2002-06-10 16:10:43 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2002-06-10 16:10:43 +0000 |
commit | 0ebaf18527d124cb0cde59192c5fd7c352b22cd4 (patch) | |
tree | cfbbf7f86e191d2d923f592c2512322f661e3f63 /bfd | |
parent | ebe3e2d199ce2c10fd27188855194170edd098cf (diff) | |
download | gdb-0ebaf18527d124cb0cde59192c5fd7c352b22cd4.zip gdb-0ebaf18527d124cb0cde59192c5fd7c352b22cd4.tar.gz gdb-0ebaf18527d124cb0cde59192c5fd7c352b22cd4.tar.bz2 |
* section.c (_bfd_strip_section_from_output): Set SEC_EXCLUDE
for removed output sections.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/section.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1dfc78d..fd43970 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 96130b9..8bb85c8 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; } |