summaryrefslogtreecommitdiff
path: root/bfd/elf32-sh64.c
diff options
context:
space:
mode:
authorKaz Kojima <kkojima@rr.iij4u.or.jp>2006-10-22 01:02:38 +0000
committerKaz Kojima <kkojima@rr.iij4u.or.jp>2006-10-22 01:02:38 +0000
commit15064d987f85f6f252ffd1fff613ce67c3b00f64 (patch)
treed3a1cf999c33a10ecab69d74c6a9c53493a894b2 /bfd/elf32-sh64.c
parentf76698d19b93796ba093fdd7e7b4e75ce8245c3c (diff)
downloadgdb-15064d987f85f6f252ffd1fff613ce67c3b00f64.tar.gz
* elf32-sh64.c (sh64_elf_merge_symbol_attribute): Do merging
only when the non visibility part of st_other is non-zero. * elf64-sh64.c (sh64_elf64_merge_symbol_attribute): Likewise.
Diffstat (limited to 'bfd/elf32-sh64.c')
-rw-r--r--bfd/elf32-sh64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf32-sh64.c b/bfd/elf32-sh64.c
index 03d5e3e9df1..9ad795e79d0 100644
--- a/bfd/elf32-sh64.c
+++ b/bfd/elf32-sh64.c
@@ -742,9 +742,9 @@ static void
sh64_elf_merge_symbol_attribute (struct elf_link_hash_entry *h,
const Elf_Internal_Sym *isym,
bfd_boolean definition,
- bfd_boolean dynamic)
+ bfd_boolean dynamic ATTRIBUTE_UNUSED)
{
- if (isym->st_other != 0 && dynamic)
+ if ((isym->st_other & ~ELF_ST_VISIBILITY (-1)) != 0)
{
unsigned char other;