diff options
author | Alan Modra <amodra@gmail.com> | 2005-07-29 02:46:04 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-07-29 02:46:04 +0000 |
commit | 8a69675106de19439ba277ce987a9535e5a6fce4 (patch) | |
tree | 9befa7bd097c8015aef9be13d009c5844b8a31a8 /bfd/elf-bfd.h | |
parent | 8655b342bf234ed946924bccd87288163022996b (diff) | |
download | gdb-8a69675106de19439ba277ce987a9535e5a6fce4.zip gdb-8a69675106de19439ba277ce987a9535e5a6fce4.tar.gz gdb-8a69675106de19439ba277ce987a9535e5a6fce4.tar.bz2 |
* elf-bfd.h (struct elf_backend_data): Add action_discarded.
(enum action_discarded): Move from..
* elflink.c (enum action_discarded): ..here.
(_bfd_elf_default_action_discarded): Rename from elf_action_discarded.
Remove target specific section checks.
(elf_link_input_bfd): Adjust.
* elfxx-target.h (elf_backend_action_discarded): Define.
(elfNN_bed): Init new field.
* bfd-in.h (_bfd_elf_default_action_discarded): Declare.
* bfd-in2.h: Regenerate.
* elf-hppa.h (elf_hppa_action_discarded): New function.
* elf32-hppa.c (elf_backend_action_discarded): Define.
* elf64-hppa.c (elf_backend_action_discarded): Define.
* elf32-ppc.c (ppc_elf_action_discarded): New function.
(elf_backend_action_discarded): Define.
Diffstat (limited to 'bfd/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index 5aa62eb..e238a95 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -546,6 +546,12 @@ struct bfd_elf_special_section int attr; }; +enum action_discarded + { + COMPLAIN = 1, + PRETEND = 2 + }; + struct elf_backend_data { /* The architecture for this backend. */ @@ -918,6 +924,11 @@ struct elf_backend_data bfd_boolean (*elf_backend_ignore_discarded_relocs) (asection *); + /* What to do when ld finds relocations against symbols defined in + discarded sections. */ + unsigned int (*action_discarded) + (asection *); + /* This function returns the width of FDE pointers in bytes, or 0 if that can't be determined for some reason. The default definition goes by the bfd's EI_CLASS. */ |