aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2007-06-27 07:12:54 +0000
committerAlan Modra <amodra@gmail.com>2007-06-27 07:12:54 +0000
commit58eb693ef13be6d0fb010269bac6942ebf8ab12f (patch)
tree37a651b24c364c440e1ada51bfc56f2892aa3e8e
parent60b31e8d17901051e1fefd271c4681e8c16ef459 (diff)
downloadfsf-binutils-gdb-58eb693ef13be6d0fb010269bac6942ebf8ab12f.zip
fsf-binutils-gdb-58eb693ef13be6d0fb010269bac6942ebf8ab12f.tar.gz
fsf-binutils-gdb-58eb693ef13be6d0fb010269bac6942ebf8ab12f.tar.bz2
* elf32-spu.c (spu_elf_create_sections): Properly iterate over
input bfds.
-rw-r--r--bfd/ChangeLog1
-rw-r--r--bfd/elf32-spu.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index fb3883a..a35e408 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 <hongjiu.lu@intel.com>
diff --git a/bfd/elf32-spu.c b/bfd/elf32-spu.c
index 844eee6..fcda1e3 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;