diff options
author | Alan Modra <amodra@gmail.com> | 2021-03-29 09:42:37 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-03-29 11:22:21 +1030 |
commit | f4f9ede04272c1417b187afe6964e5c0687f1904 (patch) | |
tree | c8a3f5bfa5203c3fe01dba909ad82b76b4af8be6 /bfd/elf32-spu.c | |
parent | 1201fda61b3bcf0028a57e622aebb16ec614f7dc (diff) | |
download | gdb-f4f9ede04272c1417b187afe6964e5c0687f1904.zip gdb-f4f9ede04272c1417b187afe6964e5c0687f1904.tar.gz gdb-f4f9ede04272c1417b187afe6964e5c0687f1904.tar.bz2 |
Miscellaneous BFD int vs bfd_boolean fixes
nds32 hyper_relax takes values of 0, 1 and 2. vms_write_data_block
return TRUE/FALSE not positive/negative.
* coff-z80.c (z80_is_local_label_name): Return bfd_boolean.
* elf32-z80.c (z80_is_local_label_name): Likewise.
* elf32-spu.c (spu_elf_modify_headers): Likewise.
* elf32-nds32.h (struct elf_nds32_link_hash_table <hyper_relax>):
Change type to int.
* vms-lib.c (_bfd_vms_lib_write_archive_contents): Correct test
for error return from vms_write_data_block.
Diffstat (limited to 'bfd/elf32-spu.c')
-rw-r--r-- | bfd/elf32-spu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf32-spu.c b/bfd/elf32-spu.c index c31ab98..1058df1 100644 --- a/bfd/elf32-spu.c +++ b/bfd/elf32-spu.c @@ -5346,7 +5346,7 @@ spu_elf_fake_sections (bfd *obfd ATTRIBUTE_UNUSED, /* Tweak phdrs before writing them out. */ -static int +static bfd_boolean spu_elf_modify_headers (bfd *abfd, struct bfd_link_info *info) { if (info != NULL) |