diff options
author | Alan Modra <amodra@gmail.com> | 2002-04-16 04:58:12 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-04-16 04:58:12 +0000 |
commit | 4ab827001997efd8ca410978f8770c51cad5e813 (patch) | |
tree | c5b31569e4ea5012f7bc3d4e987ce2a207564fb4 /bfd/elf64-sparc.c | |
parent | 76b999d0131e6a37bd3539686378c72878bef4ce (diff) | |
download | gdb-4ab827001997efd8ca410978f8770c51cad5e813.zip gdb-4ab827001997efd8ca410978f8770c51cad5e813.tar.gz gdb-4ab827001997efd8ca410978f8770c51cad5e813.tar.bz2 |
* elf32-m32r.c (m32r_elf_add_symbol_hook): Check the hash table
type rather than just assuming entries are ELF.
* elf32-sh64.c (sh64_elf_add_symbol_hook): Likewise.
* elf64-sh64.c (sh64_elf64_add_symbol_hook): Likewise.
* elf64-sparc.c (sparc64_elf_add_symbol_hook): Likewise.
* elf64-mmix.c (mmix_elf_add_symbol_hook): Use bfd_link_hash_entry
rather than elf_link_hash_entry.
Diffstat (limited to 'bfd/elf64-sparc.c')
-rw-r--r-- | bfd/elf64-sparc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bfd/elf64-sparc.c b/bfd/elf64-sparc.c index 8df7e31..4933f8d 100644 --- a/bfd/elf64-sparc.c +++ b/bfd/elf64-sparc.c @@ -1385,9 +1385,8 @@ sparc64_elf_add_symbol_hook (abfd, info, sym, namep, flagsp, secp, valp) *namep = NULL; return true; } - else if (! *namep || ! **namep) - return true; - else + else if (*namep && **namep + && info->hash->creator->flavour == bfd_target_elf_flavour) { int i; struct sparc64_elf_app_reg *p; |