aboutsummaryrefslogtreecommitdiff
path: root/bfd/elflink.h
diff options
context:
space:
mode:
authorUlf Carlsson <ulfc@engr.sgi.com>2000-06-19 00:18:58 +0000
committerUlf Carlsson <ulfc@engr.sgi.com>2000-06-19 00:18:58 +0000
commitf41cbf038e168a6a63c3f3d9297cb67164632b9d (patch)
tree19cbc6c161ef4a70106d844cff56964ce73f77e4 /bfd/elflink.h
parent689be7170418e0cf6400f76f3a00a111925a3f3d (diff)
downloadgdb-f41cbf038e168a6a63c3f3d9297cb67164632b9d.zip
gdb-f41cbf038e168a6a63c3f3d9297cb67164632b9d.tar.gz
gdb-f41cbf038e168a6a63c3f3d9297cb67164632b9d.tar.bz2
2000-06-18 Ulf Carlsson <ulfc@engr.sgi.com>
* elf_bfd.h (struct elf_backend_data): Add info argument to elf_backend_hide_symbol. (_bfd_elf_link_hash_hide_symbol): Likewise. * elf.c (_bfd_elf_link_hash_hide_symbol): Likewise. * elf64-ia64.c (elf64_ia64_hash_hide_symbol): Likewise. * elflink.h (elf_link_add_object_symbols): Likewise. (elf_link_assign_sym_version): Likewise.
Diffstat (limited to 'bfd/elflink.h')
-rw-r--r--bfd/elflink.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/elflink.h b/bfd/elflink.h
index 70a2ccc..b1f20d7 100644
--- a/bfd/elflink.h
+++ b/bfd/elflink.h
@@ -1860,7 +1860,7 @@ elf_link_add_object_symbols (abfd, info)
case STV_INTERNAL:
case STV_HIDDEN:
h->elf_link_hash_flags |= ELF_LINK_FORCED_LOCAL;
- (*bed->elf_backend_hide_symbol) (h);
+ (*bed->elf_backend_hide_symbol) (info, h);
break;
}
}
@@ -3707,7 +3707,7 @@ elf_link_assign_sym_version (h, data)
&& ! sinfo->export_dynamic)
{
h->elf_link_hash_flags |= ELF_LINK_FORCED_LOCAL;
- (*bed->elf_backend_hide_symbol) (h);
+ (*bed->elf_backend_hide_symbol) (info, h);
/* FIXME: The name of the symbol has
already been recorded in the dynamic
string table section. */
@@ -3819,7 +3819,7 @@ elf_link_assign_sym_version (h, data)
&& ! sinfo->export_dynamic)
{
h->elf_link_hash_flags |= ELF_LINK_FORCED_LOCAL;
- (*bed->elf_backend_hide_symbol) (h);
+ (*bed->elf_backend_hide_symbol) (info, h);
/* FIXME: The name of the symbol has already
been recorded in the dynamic string table
section. */
@@ -3841,7 +3841,7 @@ elf_link_assign_sym_version (h, data)
&& ! sinfo->export_dynamic)
{
h->elf_link_hash_flags |= ELF_LINK_FORCED_LOCAL;
- (*bed->elf_backend_hide_symbol) (h);
+ (*bed->elf_backend_hide_symbol) (info, h);
/* FIXME: The name of the symbol has already been
recorded in the dynamic string table section. */
}