diff options
author | Alan Modra <amodra@gmail.com> | 2005-05-03 17:05:51 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-05-03 17:05:51 +0000 |
commit | 04dd1667401316be04feb97696399d0728b63bf6 (patch) | |
tree | 849dce115776a1595762ea91b3fc857ea24673fb /bfd/elfxx-ia64.c | |
parent | c1d05a606c3ae775523d364d3aa185ba1dd7ab46 (diff) | |
download | gdb-04dd1667401316be04feb97696399d0728b63bf6.zip gdb-04dd1667401316be04feb97696399d0728b63bf6.tar.gz gdb-04dd1667401316be04feb97696399d0728b63bf6.tar.bz2 |
* section.c (bfd_section_list_remove): Don't clear s->next.
(bfd_section_list_append): Always init s->prev.
(bfd_section_list_prepend): Define.
(bfd_section_list_insert_after): Minor optimization.
(bfd_section_removed_from_list): Rewrite.
* elf.c (assign_section_numbers): Simplify list traversal now that
bfd_section_list_remove doesn't destroy removed section next ptr.
* sunos.c (sunos_add_dynamic_symbols): Likewise.
* elfxx-ia64.c (elfNN_ia64_object_p): Use bfd_section_list_prepend.
* xcofflink.c (_bfd_xcoff_bfd_final_link): Simplify list traversal.
* bfd-in2.h: Regenerate.
Diffstat (limited to 'bfd/elfxx-ia64.c')
-rw-r--r-- | bfd/elfxx-ia64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elfxx-ia64.c b/bfd/elfxx-ia64.c index a483e2d..5c3521c 100644 --- a/bfd/elfxx-ia64.c +++ b/bfd/elfxx-ia64.c @@ -4934,7 +4934,7 @@ elfNN_ia64_object_p (bfd *abfd) /* Move the fake group section to the beginning. */ bfd_section_list_remove (abfd, group); - bfd_section_list_insert_before (abfd, abfd->sections, group); + bfd_section_list_prepend (abfd, group); elf_next_in_group (group) = sec; |