diff options
author | Alan Modra <amodra@gmail.com> | 2004-08-09 03:14:12 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2004-08-09 03:14:12 +0000 |
commit | ccfa59eaa0952fc0b0476fd3ab2e9e0ccd4c799e (patch) | |
tree | 6c0fd787b2ef898e452318f07d4cf7f36b0ef8c7 /bfd/elf-bfd.h | |
parent | f2420beaba740ef570477bd4c95739fd30978aee (diff) | |
download | gdb-ccfa59eaa0952fc0b0476fd3ab2e9e0ccd4c799e.zip gdb-ccfa59eaa0952fc0b0476fd3ab2e9e0ccd4c799e.tar.gz gdb-ccfa59eaa0952fc0b0476fd3ab2e9e0ccd4c799e.tar.bz2 |
bfd/
* elf-bfd.h (_bfd_elf_gc_mark): Declare.
* elflink.c (elf_link_input_bfd): Formatting.
(_bfd_elf_gc_mark): Rename from elf_gc_mark and make global. Adjust
all callers.
* elf64-ppc.c (struct ppc_link_hash_entry): Remove is_entry.
(link_hash_newfunc): Don't set it.
(ppc64_elf_copy_indirect_symbol): Nor copy it.
(ppc64_elf_mark_entry_syms): Delete.
(ppc64_elf_gc_mark_hook): Mark entry syms here. Also mark opd
sections. Use get_opd_info.
* elf64-ppc.h (ppc64_elf_mark_entry_syms): Delete.
ld/
* emultempl/ppc64elf.em (ppc_after_open): Delete.
(LDEMUL_AFTER_OPEN): Don't define.
Diffstat (limited to 'bfd/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index e1a0075..d2bce6d 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -1710,6 +1710,11 @@ extern bfd_boolean bfd_elf_gc_record_vtinherit extern bfd_boolean bfd_elf_gc_record_vtentry (bfd *, asection *, struct elf_link_hash_entry *, bfd_vma); +extern bfd_boolean _bfd_elf_gc_mark + (struct bfd_link_info *, asection *, + asection * (*) (asection *, struct bfd_link_info *, Elf_Internal_Rela *, + struct elf_link_hash_entry *, Elf_Internal_Sym *)); + extern bfd_boolean bfd_elf_gc_common_finalize_got_offsets (bfd *, struct bfd_link_info *); |