+2008-05-12 Alan Modra <amodra@bigpond.net.au>
+
+ * elf32-spu.c (spu_elf_relocate_section): Rename is_ea to is_ea_sym.
+
2008-05-10 Paul Pluzhnikov <ppluzhnikov@google.com>
* elfcore.h (elf_core_file_p): Warn about core truncation.
asection *ea = bfd_get_section_by_name (output_bfd, "._ea");
int ret = TRUE;
bfd_boolean emit_these_relocs = FALSE;
- bfd_boolean is_ea;
+ bfd_boolean is_ea_sym;
bfd_boolean stubs;
htab = spu_hash_table (info);
if (info->relocatable)
continue;
- is_ea = (ea != NULL
- && sec != NULL
- && sec->output_section == ea);
+ is_ea_sym = (ea != NULL
+ && sec != NULL
+ && sec->output_section == ea);
+
if (r_type == R_SPU_PPU32 || r_type == R_SPU_PPU64)
{
- if (is_ea)
+ if (is_ea_sym)
{
/* ._ea is a special section that isn't allocated in SPU
memory, but rather occupies space in PPU memory as
continue;
}
- if (is_ea)
+ if (is_ea_sym)
unresolved_reloc = TRUE;
if (unresolved_reloc)