* elf64-sparc.c (sparc64_elf_relocate_section): Ignore R_SPARC_DISP32
authorAlan Modra <amodra@gmail.com>
Thu, 19 Jun 2003 13:21:53 +0000 (13:21 +0000)
committerAlan Modra <amodra@gmail.com>
Thu, 19 Jun 2003 13:21:53 +0000 (13:21 +0000)
reloc overflow on discarded eh_frame entries.

bfd/ChangeLog
bfd/elf64-sparc.c

index ea57ab79fcea3197ca8b56694d121e6b5e63ad5b..5304adbe681b0b9cbf4eff727b7b5f6cea230f23 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-19  Alan Modra  <amodra@bigpond.net.au>
+
+       * elf64-sparc.c (sparc64_elf_relocate_section): Ignore R_SPARC_DISP32
+       reloc overflow on discarded eh_frame entries.
+
 2003-06-19  Alan Modra  <amodra@bigpond.net.au>
 
        * elf64-ppc.c (toc_adjusting_stub_needed): New function.
index d25b429337a5a36daa6872db61a44cfae665b7c8..080c4e7b32bad1d9c9e23d049cdc7933ad29f6a6 100644 (file)
@@ -2684,7 +2684,7 @@ sparc64_elf_relocate_section (output_bfd, info, input_bfd, input_section,
               overflows.  We don't, but this breaks stabs debugging
               info, whose relocations are only 32-bits wide.  Ignore
               overflows for discarded entries.  */
-           if (r_type == R_SPARC_32
+           if ((r_type == R_SPARC_32 || r_type == R_SPARC_DISP32)
                && _bfd_elf_section_offset (output_bfd, info, input_section,
                                            rel->r_offset) == (bfd_vma) -1)
              break;
This page took 0.029466 seconds and 4 git commands to generate.