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/elf64-ia64-vms.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/elf64-ia64-vms.c')
-rw-r--r-- | bfd/elf64-ia64-vms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf64-ia64-vms.c b/bfd/elf64-ia64-vms.c index 0a8cbc6..617ecfe 100644 --- a/bfd/elf64-ia64-vms.c +++ b/bfd/elf64-ia64-vms.c @@ -1010,7 +1010,7 @@ elf64_ia64_global_dyn_info_free (void **xentry, /* Free the local elf64_ia64_dyn_sym_info array. */ -static bfd_boolean +static int elf64_ia64_local_dyn_info_free (void **slot, void * unused ATTRIBUTE_UNUSED) { @@ -1111,7 +1111,7 @@ elf64_ia64_global_dyn_sym_thunk (struct bfd_hash_entry *xentry, return TRUE; } -static bfd_boolean +static int elf64_ia64_local_dyn_sym_thunk (void **slot, void * xdata) { struct elf64_ia64_local_hash_entry *entry |