From: Richard Henderson Date: Fri, 9 Feb 2001 00:29:58 +0000 (+0000) Subject: * elf64-alpha.c (alpha_elf_dynamic_symbol_p): Respect weakness X-Git-Tag: jimb_gnu_v3_branchpoint~246 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ca88208ac8ae9caab05dc80c5ccca650cb156a60;p=platform%2Fupstream%2Fbinutils.git * elf64-alpha.c (alpha_elf_dynamic_symbol_p): Respect weakness before visibility. Locally defined protected symbols are not dynamic. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9c15c7b..f64124e 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2001-02-08 Richard Henderson + + * elf64-alpha.c (alpha_elf_dynamic_symbol_p): Respect weakness + before visibility. Locally defined protected symbols are not + dynamic. + 2001-02-08 Geoffrey Keating * config.bfd: Enable coff64 for rs6000-*. Patch from diff --git a/bfd/elf64-alpha.c b/bfd/elf64-alpha.c index 9808c8f..28f0f4c 100644 --- a/bfd/elf64-alpha.c +++ b/bfd/elf64-alpha.c @@ -240,17 +240,24 @@ alpha_elf_dynamic_symbol_p (h, info) if (h->dynindx == -1) return false; + + if (h->root.type == bfd_link_hash_undefweak + || h->root.type == bfd_link_hash_defweak) + return true; + switch (ELF_ST_VISIBILITY (h->other)) { - case STV_INTERNAL: + case STV_DEFAULT: + break; case STV_HIDDEN: + case STV_INTERNAL: return false; + case STV_PROTECTED: + if (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) + return false; + break; } - if (h->root.type == bfd_link_hash_undefweak - || h->root.type == bfd_link_hash_defweak) - return true; - if ((info->shared && !info->symbolic) || ((h->elf_link_hash_flags & (ELF_LINK_HASH_DEF_DYNAMIC | ELF_LINK_HASH_REF_REGULAR))