aboutsummaryrefslogtreecommitdiff
path: root/bfd/elfxx-ia64.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2001-04-30 16:13:26 +0000
committerH.J. Lu <hjl.tools@gmail.com>2001-04-30 16:13:26 +0000
commit5fba655aed6c897750c2a9c88467b1691b8ec481 (patch)
tree5f3ea805408b8b31de47495c6407a9483ad9defb /bfd/elfxx-ia64.c
parentdb20fd76547e0c6e7f73969bbeec15e3d83a182e (diff)
downloadfsf-binutils-gdb-5fba655aed6c897750c2a9c88467b1691b8ec481.zip
fsf-binutils-gdb-5fba655aed6c897750c2a9c88467b1691b8ec481.tar.gz
fsf-binutils-gdb-5fba655aed6c897750c2a9c88467b1691b8ec481.tar.bz2
2000-04-27 H.J. Lu <hjl@gnu.org>
* elf.c (_bfd_elf_link_hash_hide_symbol): Set dynindx to -1 only for ELF_LINK_FORCED_LOCAL. * elf32-hppa.c (elf32_hppa_hide_symbol): Likewise. * elf32-mips.c (_bfd_mips_elf_hide_symbol): Likewise. * elfxx-ia64.c (elfNN_ia64_hash_hide_symbol): Likewise. * elflink.h (elf_fix_symbol_flags): Set ELF_LINK_FORCED_LOCAL if the symbol has hidden or internal visibility.
Diffstat (limited to 'bfd/elfxx-ia64.c')
-rw-r--r--bfd/elfxx-ia64.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/elfxx-ia64.c b/bfd/elfxx-ia64.c
index 77d2022..8d80e6e 100644
--- a/bfd/elfxx-ia64.c
+++ b/bfd/elfxx-ia64.c
@@ -1524,7 +1524,8 @@ elfNN_ia64_hash_hide_symbol (info, xh)
h = (struct elfNN_ia64_link_hash_entry *)xh;
h->root.elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
- h->root.dynindx = -1;
+ if ((h->root.elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0)
+ h->root.dynindx = -1;
for (dyn_i = h->info; dyn_i; dyn_i = dyn_i->next)
dyn_i->want_plt2 = 0;