From: Jakub Jelinek Date: Tue, 17 Jun 2003 12:39:41 +0000 (+0000) Subject: * elf64-ppc.c (ppc64_elf_relocation_section): Ensure X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=23fbd6fa706e7861ba00a0553ed2eb87785345f5;p=deliverable%2Fbinutils-gdb.git * elf64-ppc.c (ppc64_elf_relocation_section): Ensure *r_offset == r_addend for RELATIVE relocs against .got. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f738d5a1aa..46ac718201 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2003-06-17 Jakub Jelinek + + * elf64-ppc.c (ppc64_elf_relocation_section): Ensure + *r_offset == r_addend for RELATIVE relocs against .got. + 2003-06-17 Alan Modra * elf64-ppc.c (ppc64_elf_relocate_section): Optimize unaligned relocs. diff --git a/bfd/elf64-ppc.c b/bfd/elf64-ppc.c index ca58c10fca..e7c0836183 100644 --- a/bfd/elf64-ppc.c +++ b/bfd/elf64-ppc.c @@ -7970,7 +7970,8 @@ ppc64_elf_relocate_section (output_bfd, info, input_bfd, input_section, /* Write the .got section contents for the sake of prelink. */ loc = htab->sgot->contents + off; - bfd_put_64 (output_bfd, outrel.r_addend, loc); + bfd_put_64 (output_bfd, outrel.r_addend + relocation, + loc); } else outrel.r_info = ELF64_R_INFO (indx, R_PPC64_GLOB_DAT);