diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-04-19 14:25:49 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2004-04-19 14:25:49 +0000 |
commit | 4dc570c2f5d73c82196fc6e99191c140b03f8bbe (patch) | |
tree | f343489bbac653d0ca354d67bdb4c942b66c27fc /bfd | |
parent | 77cd6497db5b5c36f57a1b0c0cade6bde8ccf489 (diff) | |
download | gdb-4dc570c2f5d73c82196fc6e99191c140b03f8bbe.zip gdb-4dc570c2f5d73c82196fc6e99191c140b03f8bbe.tar.gz gdb-4dc570c2f5d73c82196fc6e99191c140b03f8bbe.tar.bz2 |
bfd/
* elf32-sparc.c (elf32_sparc_relocate_section): Handle
relocs against hidden/protected undefweak symbols properly.
* elf64-sparc.c (sparc64_elf_relocate_section): Likewise.
gas/testsuite/
* gas/cfi/cfi-sparc64-1.d: Update.
ld/testsuite/
* ld-elfvsb/elfvsb.exp: XFAIL some tests on sparc64.
* ld-shared/shared.exp: Likewise.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elf32-sparc.c | 3 | ||||
-rw-r--r-- | bfd/elf64-sparc.c | 7 |
3 files changed, 16 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a454433..dda65cd 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2004-04-19 Jakub Jelinek <jakub@redhat.com> + + * elf32-sparc.c (elf32_sparc_relocate_section): Handle + relocs against hidden/protected undefweak symbols properly. + * elf64-sparc.c (sparc64_elf_relocate_section): Likewise. + 2004-04-18 Mark Kettenis <kettenis@gnu.org> * libaout.h (enum machine_type): Add M_POWERPC_NETBSD. diff --git a/bfd/elf32-sparc.c b/bfd/elf32-sparc.c index 0f94f5f..6e1c40b 100644 --- a/bfd/elf32-sparc.c +++ b/bfd/elf32-sparc.c @@ -2374,6 +2374,9 @@ elf32_sparc_relocate_section (output_bfd, info, input_bfd, input_section, break; if ((info->shared + && (h == NULL + || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT + || h->root.type != bfd_link_hash_undefweak) && (! howto->pc_relative || (h != NULL && h->dynindx != -1 diff --git a/bfd/elf64-sparc.c b/bfd/elf64-sparc.c index 4568a22..4f28325 100644 --- a/bfd/elf64-sparc.c +++ b/bfd/elf64-sparc.c @@ -2213,6 +2213,13 @@ sparc64_elf_relocate_section (output_bfd, info, input_bfd, input_section, break; } + /* FIXME: Dynamic reloc handling really needs to be rewritten. */ + if (!skip + && h != NULL + && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT + && h->root.type == bfd_link_hash_undefweak) + skip = TRUE, relocate = TRUE; + if (skip) memset (&outrel, 0, sizeof outrel); /* h->dynindx may be -1 if the symbol was marked to |