From: Eric Botcazou Date: Wed, 5 Jan 2005 15:26:27 +0000 (+0000) Subject: * elf64-sparc.c (sparc64_elf_relocate_section): Ignore overflows X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79bff9c7a1956109bed845c3f58ddae801882926;p=thirdparty%2Fbinutils-gdb.git * elf64-sparc.c (sparc64_elf_relocate_section): Ignore overflows from STABS debugging sections again. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 80e9bd1ee0a..89cf8797d6b 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2005-01-05 Eric Botcazou + + * elf64-sparc.c (sparc64_elf_relocate_section): Ignore overflows + from STABS debugging sections again. + 2004-10-16 H.J. Lu * elflink.c (elf_link_add_object_symbols): Also clear diff --git a/bfd/elf64-sparc.c b/bfd/elf64-sparc.c index 4568a22d643..b4e729663c3 100644 --- a/bfd/elf64-sparc.c +++ b/bfd/elf64-sparc.c @@ -2635,10 +2635,14 @@ sparc64_elf_relocate_section (output_bfd, info, input_bfd, input_section, /* The Solaris native linker silently disregards overflows. We don't, but this breaks stabs debugging info, whose relocations are only 32-bits wide. Ignore - overflows for discarded entries. */ + overflows in this case and also for discarded entries. */ 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) + && (((input_section->flags & SEC_DEBUGGING) != 0 + && strcmp (bfd_section_name (input_bfd, input_section), + ".stab") == 0) + || _bfd_elf_section_offset (output_bfd, info, + input_section, + rel->r_offset) == (bfd_vma)-1)) break; if (h != NULL)