* elf64-ppc.c (ppc64_elf_relocate_section): Correct NOP location
when optimizing high got_tlsgd/ld insns.
This commit is contained in:
parent
523136f211
commit
727ac201d4
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2010-04-13 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
* elf64-ppc.c (ppc64_elf_relocate_section): Correct NOP location
|
||||||
|
when optimizing high got_tlsgd/ld insns.
|
||||||
|
|
||||||
2010-04-10 H.J. Lu <hongjiu.lu@intel.com>
|
2010-04-10 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* hosts/x86-64linux.h (HAVE_PRPSINFO32_T): Undefine before
|
* hosts/x86-64linux.h (HAVE_PRPSINFO32_T): Undefine before
|
||||||
|
|
|
@ -11650,8 +11650,8 @@ ppc64_elf_relocate_section (bfd *output_bfd,
|
||||||
+ R_PPC64_GOT_TPREL16_DS);
|
+ R_PPC64_GOT_TPREL16_DS);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
bfd_put_32 (output_bfd, NOP, contents + rel->r_offset);
|
|
||||||
rel->r_offset -= d_offset;
|
rel->r_offset -= d_offset;
|
||||||
|
bfd_put_32 (output_bfd, NOP, contents + rel->r_offset);
|
||||||
r_type = R_PPC64_NONE;
|
r_type = R_PPC64_NONE;
|
||||||
}
|
}
|
||||||
rel->r_info = ELF64_R_INFO (r_symndx, r_type);
|
rel->r_info = ELF64_R_INFO (r_symndx, r_type);
|
||||||
|
|
Loading…
Reference in a new issue