diff options
author | Richard Henderson <rth@redhat.com> | 2000-02-18 09:23:06 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2000-02-18 09:23:06 +0000 |
commit | c61b8717214f5a3fffc7fd33afe2e205132c82bb (patch) | |
tree | db5bd01f4b4ec29d1c463c5e4f0d793d1a28e9dd /bfd/elfxx-target.h | |
parent | 9365c12ca38698e3b3c5653080714f526204982e (diff) | |
download | gdb-c61b8717214f5a3fffc7fd33afe2e205132c82bb.zip gdb-c61b8717214f5a3fffc7fd33afe2e205132c82bb.tar.gz gdb-c61b8717214f5a3fffc7fd33afe2e205132c82bb.tar.bz2 |
* elf-bfd.h (struct elf_link_hash_table): Remove copy_indirect
and hide_symbol members.
(elf_link_hash_copy_indirect): Remove.
(elf_link_hash_hide_symbol): Remove.
(struct elf_backend_data): Add elf_backend_copy_indirect_symbol
and elf_backend_hide_symbol.
(_bfd_elf_link_hash_copy_indirect): Declare.
(_bfd_elf_link_hash_hide_symbol): Declare.
* elf.c (_bfd_elf_link_hash_copy_indirect): Remove table argument.
(_bfd_elf_link_hash_hide_symbol): Likewise.
(_bfd_elf_link_hash_table_init): Don't init killed members.
* elflink.h (elf_link_add_object_symbols): Use the bed function
pointers not elf_link_hash_{copy_indirect,hide_symbol}.
(elf_link_assign_sym_version): Likewise.
* elfxx-target.h (elf_backend_copy_indirect_symbol): Default.
(elf_backend_hide_symbol): Likewise.
(elfNN_bed): Update for new members.
Diffstat (limited to 'bfd/elfxx-target.h')
-rw-r--r-- | bfd/elfxx-target.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bfd/elfxx-target.h b/bfd/elfxx-target.h index 0a69dd8..b1f4867 100644 --- a/bfd/elfxx-target.h +++ b/bfd/elfxx-target.h @@ -306,6 +306,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef elf_backend_output_arch_syms #define elf_backend_output_arch_syms NULL #endif +#ifndef elf_backend_copy_indirect_symbol +#define elf_backend_copy_indirect_symbol _bfd_elf_link_hash_copy_indirect +#endif +#ifndef elf_backend_hide_symbol +#define elf_backend_hide_symbol _bfd_elf_link_hash_hide_symbol +#endif + /* Previously, backends could only use SHT_REL or SHT_RELA relocation sections, but not both. They defined USE_REL to indicate SHT_REL @@ -383,6 +390,8 @@ static CONST struct elf_backend_data elfNN_bed = elf_backend_post_process_headers, elf_backend_print_symbol_all, elf_backend_output_arch_syms, + elf_backend_copy_indirect_symbol, + elf_backend_hide_symbol, elf_backend_ecoff_debug_swap, ELF_MACHINE_ALT1, ELF_MACHINE_ALT2, |