From 91c7009db14823019a4b6301b595a982076141f7 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Tue, 17 Jun 2003 12:39:41 +0000 Subject: [PATCH] * elf64-ppc.c (ppc64_elf_relocation_section): Ensure *r_offset == r_addend for RELATIVE relocs against .got. --- bfd/ChangeLog | 5 +++++ bfd/elf64-ppc.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) 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); -- 2.11.0