OSDN Git Service

* elf64-ppc.c (ppc64_elf_relocation_section): Ensure
authorJakub Jelinek <jakub@redhat.com>
Tue, 17 Jun 2003 12:39:41 +0000 (12:39 +0000)
committerJakub Jelinek <jakub@redhat.com>
Tue, 17 Jun 2003 12:39:41 +0000 (12:39 +0000)
*r_offset == r_addend for RELATIVE relocs against .got.

bfd/ChangeLog
bfd/elf64-ppc.c

index f738d5a..46ac718 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-17  Jakub Jelinek  <jakub@redhat.com>
+
+       * elf64-ppc.c (ppc64_elf_relocation_section): Ensure
+       *r_offset == r_addend for RELATIVE relocs against .got.
+
 2003-06-17  Alan Modra  <amodra@bigpond.net.au>
 
        * elf64-ppc.c (ppc64_elf_relocate_section): Optimize unaligned relocs.
index ca58c10..e7c0836 100644 (file)
@@ -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);