diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-09-08 04:10:34 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-09-08 04:10:34 -0700 |
commit | 1de031c80b121db6f59d189d150ab2b69f6ede21 (patch) | |
tree | 81f48840ed1bf04d672741492d266bc073b529e8 /bfd/elfxx-x86.h | |
parent | 7a382c1c50fca0d4bc4c2e618ff6ac222c4e2137 (diff) | |
download | gdb-1de031c80b121db6f59d189d150ab2b69f6ede21.zip gdb-1de031c80b121db6f59d189d150ab2b69f6ede21.tar.gz gdb-1de031c80b121db6f59d189d150ab2b69f6ede21.tar.bz2 |
x86: Replace elf_x86_plt_layout_table with elf_x86_init_table
* elf32-i386.c (elf_i386_link_setup_gnu_properties): Replace
elf_x86_plt_layout_table with elf_x86_init_table.
* elf64-x86-64.c (elf_x86_64_link_setup_gnu_properties):
Likewise.
* elfxx-x86.c (_bfd_x86_elf_link_setup_gnu_properties):
Likewise.
* elfxx-x86.h (elf_x86_plt_layout_table): Renamed to ...
(elf_x86_init_table): This.
(_bfd_x86_elf_link_setup_gnu_properties): Replace
elf_x86_plt_layout_table with elf_x86_init_table.
Diffstat (limited to 'bfd/elfxx-x86.h')
-rw-r--r-- | bfd/elfxx-x86.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elfxx-x86.h b/bfd/elfxx-x86.h index 6e77356..8f0cad0 100644 --- a/bfd/elfxx-x86.h +++ b/bfd/elfxx-x86.h @@ -343,7 +343,7 @@ struct elf_x86_link_hash_table const char *tls_get_addr; }; -struct elf_x86_plt_layout_table +struct elf_x86_init_table { /* The lazy PLT layout. */ const struct elf_x86_lazy_plt_layout *lazy_plt; @@ -491,7 +491,7 @@ extern bfd_boolean _bfd_x86_elf_merge_gnu_properties (struct bfd_link_info *, bfd *, elf_property *, elf_property *); extern bfd * _bfd_x86_elf_link_setup_gnu_properties - (struct bfd_link_info *, struct elf_x86_plt_layout_table *); + (struct bfd_link_info *, struct elf_x86_init_table *); #define bfd_elf64_mkobject \ _bfd_x86_elf_mkobject |