* elf32-spu.c (spu_elf_relocate_section): Correct 2009-07-24 logic.
This commit is contained in:
parent
4c4fb5dac5
commit
57e96a0861
@ -1,3 +1,7 @@
|
||||
2009-09-04 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* elf32-spu.c (spu_elf_relocate_section): Correct 2009-07-24 logic.
|
||||
|
||||
2009-09-04 Jie Zhang <jie.zhang@analog.com>
|
||||
|
||||
* elf32-bfin.c (elf32_bfinfdpic_create_dynamic_sections): Always
|
||||
|
@ -4906,8 +4906,9 @@ spu_elf_relocate_section (bfd *output_bfd,
|
||||
continue;
|
||||
|
||||
/* Change "a rt,ra,rb" to "ai rt,ra,0". */
|
||||
if (r_type == R_SPU_ADD_PIC && h != NULL
|
||||
&& (h->def_regular || ELF_COMMON_DEF_P (h)))
|
||||
if (r_type == R_SPU_ADD_PIC
|
||||
&& h != NULL
|
||||
&& !(h->def_regular || ELF_COMMON_DEF_P (h)))
|
||||
{
|
||||
bfd_byte *loc = contents + rel->r_offset;
|
||||
loc[0] = 0x1c;
|
||||
|
Loading…
Reference in New Issue
Block a user