diff options
author | Alan Modra <amodra@gmail.com> | 2002-01-16 05:37:10 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-01-16 05:37:10 +0000 |
commit | c601ffdbb07858c9120efe4c7086665d7324b069 (patch) | |
tree | 5fe6ed4258d8dee2cc8aac00568c53313c9be830 /bfd/elflink.h | |
parent | b012904272850138ff57e00c55b227b898aba7a0 (diff) | |
download | gdb-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/elflink.h')
-rw-r--r-- | bfd/elflink.h | 3 |
1 files changed, 1 insertions, 2 deletions
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. */ |