aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2002-01-16 05:37:10 +0000
committerAlan Modra <amodra@gmail.com>2002-01-16 05:37:10 +0000
commitc601ffdbb07858c9120efe4c7086665d7324b069 (patch)
tree5fe6ed4258d8dee2cc8aac00568c53313c9be830 /bfd
parentb012904272850138ff57e00c55b227b898aba7a0 (diff)
downloadgdb-c601ffdbb07858c9120efe4c7086665d7324b069.zip
gdb-c601ffdbb07858c9120efe4c7086665d7324b069.tar.gz
gdb-c601ffdbb07858c9120efe4c7086665d7324b069.tar.bz2
* elf32-arm.h (elf32_arm_size_dynamic_sections): When removing
sections, use bfd_section_list_remove. * elf32-i370.c (i370_elf_size_dynamic_sections): Likewise. * elflink.h (elf_link_add_object_symbols): When removing all sections, use bfd_section_list_clear.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog8
-rw-r--r--bfd/elf32-arm.h14
-rw-r--r--bfd/elf32-i370.c14
-rw-r--r--bfd/elflink.h3
4 files changed, 27 insertions, 12 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 5716c82..0da0df2 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,11 @@
+2002-01-16 Alan Modra <amodra@bigpond.net.au>
+
+ * elf32-arm.h (elf32_arm_size_dynamic_sections): When removing
+ sections, use bfd_section_list_remove.
+ * elf32-i370.c (i370_elf_size_dynamic_sections): Likewise.
+ * elflink.h (elf_link_add_object_symbols): When removing all
+ sections, use bfd_section_list_clear.
+
2002-01-15 Nick Clifton <nickc@cambridge.redhat.com>
* po/sv.po: New file: Swedish translation.
diff --git a/bfd/elf32-arm.h b/bfd/elf32-arm.h
index 3a5939d..9d0a405 100644
--- a/bfd/elf32-arm.h
+++ b/bfd/elf32-arm.h
@@ -3170,12 +3170,16 @@ elf32_arm_size_dynamic_sections (output_bfd, info)
asection ** spp;
for (spp = &s->output_section->owner->sections;
- *spp != s->output_section;
+ *spp != NULL;
spp = &(*spp)->next)
- ;
- *spp = s->output_section->next;
- --s->output_section->owner->section_count;
-
+ {
+ if (*spp == s->output_section)
+ {
+ bfd_section_list_remove (s->output_section->owner, spp);
+ --s->output_section->owner->section_count;
+ break;
+ }
+ }
continue;
}
diff --git a/bfd/elf32-i370.c b/bfd/elf32-i370.c
index 5c5740f..5ac43dd 100644
--- a/bfd/elf32-i370.c
+++ b/bfd/elf32-i370.c
@@ -881,12 +881,16 @@ i370_elf_size_dynamic_sections (output_bfd, info)
asection **spp;
for (spp = &s->output_section->owner->sections;
- *spp != s->output_section;
+ *spp != NULL;
spp = &(*spp)->next)
- ;
- *spp = s->output_section->next;
- --s->output_section->owner->section_count;
-
+ {
+ if (*spp == s->output_section)
+ {
+ bfd_section_list_remove (s->output_section->owner, spp);
+ --s->output_section->owner->section_count;
+ break;
+ }
+ }
continue;
}
/* Allocate memory for the section contents. */
diff --git a/bfd/elflink.h b/bfd/elflink.h
index 9a3bfd3..bf63192 100644
--- a/bfd/elflink.h
+++ b/bfd/elflink.h
@@ -1568,8 +1568,7 @@ elf_link_add_object_symbols (abfd, info)
SEC_NEVER_LOAD flag is not the one we want, because that one
still implies that the section takes up space in the output
file. */
- abfd->sections = NULL;
- abfd->section_count = 0;
+ bfd_section_list_clear (abfd);
/* If this is the first dynamic object found in the link, create
the special sections required for dynamic linking. */