aboutsummaryrefslogtreecommitdiff
path: root/include/opcode/tic6x.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2021-03-31 10:20:10 +1030
committerAlan Modra <amodra@gmail.com>2021-03-31 10:49:23 +1030
commit9193bc4285c232400a26448ca75095c44c13f637 (patch)
tree40d0ec6e79c179c2f814a2b559e52377eb8c4d14 /include/opcode/tic6x.h
parentad9e24ad113a160d8d44dba0eb5cb02647a164e0 (diff)
downloadgdb-9193bc4285c232400a26448ca75095c44c13f637.zip
gdb-9193bc4285c232400a26448ca75095c44c13f637.tar.gz
gdb-9193bc4285c232400a26448ca75095c44c13f637.tar.bz2
Use bool in include
* bfdlink.h: Replace bfd_boolean with bool throughout. * coff/ecoff.h: Likewise. * coff/xcoff.h: Likewise. * dis-asm.h: Likewise. * elf/mmix.h: Likewise. * elf/xtensa.h: Likewise. * opcode/aarch64.h: Likewise, and FALSE with false, TRUE with true. * opcode/arc.h: Likewise. * opcode/mips.h: Likewise. * opcode/tic6x-opcode-table.h: Likewise. * opcode/tic6x.h: Likewise.
Diffstat (limited to 'include/opcode/tic6x.h')
-rw-r--r--include/opcode/tic6x.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/opcode/tic6x.h b/include/opcode/tic6x.h
index 62c686a..019c376 100644
--- a/include/opcode/tic6x.h
+++ b/include/opcode/tic6x.h
@@ -697,26 +697,26 @@ typedef struct
unsigned int header;
/* Whether each word uses compact instructions. */
- bfd_boolean word_compact[7];
+ bool word_compact[7];
/* Whether loads are protected. */
- bfd_boolean prot;
+ bool prot;
/* Whether instructions use the high register set. */
- bfd_boolean rs;
+ bool rs;
/* Data size. */
unsigned int dsz;
/* Whether compact instructions in the S unit are decoded as
branches. */
- bfd_boolean br;
+ bool br;
/* Whether compact instructions saturate. */
- bfd_boolean sat;
+ bool sat;
/* P-bits. */
- bfd_boolean p_bits[14];
+ bool p_bits[14];
} tic6x_fetch_packet_header;
#ifdef __cplusplus