diff options
author | Ulf Carlsson <ulfc@engr.sgi.com> | 2000-06-19 00:18:58 +0000 |
---|---|---|
committer | Ulf Carlsson <ulfc@engr.sgi.com> | 2000-06-19 00:18:58 +0000 |
commit | f41cbf038e168a6a63c3f3d9297cb67164632b9d (patch) | |
tree | 19cbc6c161ef4a70106d844cff56964ce73f77e4 /bfd/elf-bfd.h | |
parent | 689be7170418e0cf6400f76f3a00a111925a3f3d (diff) | |
download | gdb-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/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index 3978aee..b17f7c6 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -601,7 +601,7 @@ struct elf_backend_data /* Modify any information related to dynamic linking such that the symbol is not exported. */ void (*elf_backend_hide_symbol) - PARAMS ((struct elf_link_hash_entry *)); + PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *)); /* The swapping table to use when dealing with ECOFF information. Used for the MIPS ELF .mdebug section. */ @@ -970,7 +970,7 @@ extern struct bfd_link_hash_table *_bfd_elf_link_hash_table_create extern void _bfd_elf_link_hash_copy_indirect PARAMS ((struct elf_link_hash_entry *, struct elf_link_hash_entry *)); extern void _bfd_elf_link_hash_hide_symbol - PARAMS ((struct elf_link_hash_entry *)); + PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *)); extern boolean _bfd_elf_link_hash_table_init PARAMS ((struct elf_link_hash_table *, bfd *, struct bfd_hash_entry *(*) (struct bfd_hash_entry *, |