diff options
author | Alan Modra <amodra@gmail.com> | 2021-03-29 09:41:01 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-03-29 11:22:21 +1030 |
commit | 1201fda61b3bcf0028a57e622aebb16ec614f7dc (patch) | |
tree | d412f7aa757a5f02b941a8879457b889355ff226 /bfd/elfnn-aarch64.c | |
parent | 37bb890f814d58dd4c5f67db32ea4618008229ee (diff) | |
download | gdb-1201fda61b3bcf0028a57e622aebb16ec614f7dc.zip gdb-1201fda61b3bcf0028a57e622aebb16ec614f7dc.tar.gz gdb-1201fda61b3bcf0028a57e622aebb16ec614f7dc.tar.bz2 |
hash table iterator callback functions int vs. bfd_boolean
Correct return type of callbacks invoked by htab_traverse and other
hashtab.h functions to int, and one case of a callback invoked by
elf_link_hash_traverse to bfd_boolean.
* elf32-i386.c (elf_i386_finish_local_dynamic_symbol): Return int.
* elf64-ia64-vms.c (elf64_ia64_local_dyn_info_free): Likewise.
(elf64_ia64_local_dyn_sym_thunk): Likewise.
* elf64-x86-64.c (elf_x86_64_finish_local_dynamic_symbol): Likewise.
* elfnn-aarch64.c (elfNN_aarch64_allocate_local_ifunc_dynrelocs),
(elfNN_aarch64_finish_local_dynamic_symbol): Likewise.
* elfnn-ia64.c (elfNN_ia64_local_dyn_info_free): Likewise.
(elfNN_ia64_local_dyn_sym_thunk): Likewise.
* elfnn-riscv.c (allocate_local_ifunc_dynrelocs): Likewise.
(riscv_pcrel_reloc_eq): Likewise.
(riscv_elf_finish_local_dynamic_symbol): Likewise.
* elfxx-sparc.c (allocate_local_dynrelocs): Likewise.
(finish_local_dynamic_symbol): Likewise.
* elfxx-x86.c (elf_x86_allocate_local_dynreloc): Likewise.
* elfxx-mips.c (mips_elf_resolve_got_page_ref): Likewise.
(mips_elf_count_got_symbols): Change return type to bfd_boolean.
Diffstat (limited to 'bfd/elfnn-aarch64.c')
-rw-r--r-- | bfd/elfnn-aarch64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elfnn-aarch64.c b/bfd/elfnn-aarch64.c index ccabc4f..3ec0983 100644 --- a/bfd/elfnn-aarch64.c +++ b/bfd/elfnn-aarch64.c @@ -8828,7 +8828,7 @@ elfNN_aarch64_allocate_ifunc_dynrelocs (struct elf_link_hash_entry *h, /* Allocate space in .plt, .got and associated reloc sections for local ifunc dynamic relocs. */ -static bfd_boolean +static int elfNN_aarch64_allocate_local_ifunc_dynrelocs (void **slot, void *inf) { struct elf_link_hash_entry *h @@ -9475,7 +9475,7 @@ elfNN_aarch64_finish_dynamic_symbol (bfd *output_bfd, /* Finish up local dynamic symbol handling. We set the contents of various dynamic sections here. */ -static bfd_boolean +static int elfNN_aarch64_finish_local_dynamic_symbol (void **slot, void *inf) { struct elf_link_hash_entry *h |