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-nds32.h | |
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-nds32.h')
-rw-r--r-- | bfd/elf32-nds32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf32-nds32.h b/bfd/elf32-nds32.h index e7853cf..0f49636 100644 --- a/bfd/elf32-nds32.h +++ b/bfd/elf32-nds32.h @@ -126,7 +126,7 @@ struct elf_nds32_link_hash_table int relax_fp_as_gp; /* --mrelax-omit-fp. */ int eliminate_gc_relocs; /* --meliminate-gc-relocs. */ FILE *sym_ld_script; /* --mgen-symbol-ld-script=<file>. */ - bfd_boolean hyper_relax; /* Relax for symbol not in RW sections. */ + int hyper_relax; /* Relax for symbol not in RW sections. */ int tls_desc_trampoline; /* --m[no-]tlsdesc-trampoline. */ /* Disable if linking a dynamically linked executable. */ int load_store_relax; |