From: Alan Modra Date: Wed, 27 Jun 2007 07:12:54 +0000 (+0000) Subject: * elf32-spu.c (spu_elf_create_sections): Properly iterate over X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=58eb693ef13be6d0fb010269bac6942ebf8ab12f;p=binutils-gdb.git * elf32-spu.c (spu_elf_create_sections): Properly iterate over input bfds. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index fb3883a2ce0..a35e408636c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -2,6 +2,7 @@ * elf32-ppc.c (ppc_elf_select_plt_layout): Properly iterate over input bfds. + * elf32-spu.c (spu_elf_create_sections): Likewise. 2007-06-26 H.J. Lu diff --git a/bfd/elf32-spu.c b/bfd/elf32-spu.c index 844eee6ca26..fcda1e3484b 100644 --- a/bfd/elf32-spu.c +++ b/bfd/elf32-spu.c @@ -533,7 +533,7 @@ spu_elf_create_sections (bfd *output_bfd, htab->stack_analysis = stack_analysis; htab->emit_stack_syms = emit_stack_syms; - for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->next) + for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next) if (bfd_get_section_by_name (ibfd, SPU_PTNOTE_SPUNAME) != NULL) break;