diff options
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/csky-dis.c | 2 | ||||
-rw-r--r-- | opcodes/csky-opc.h | 4 | ||||
-rw-r--r-- | opcodes/ia64-dis.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/opcodes/csky-dis.c b/opcodes/csky-dis.c index b7c8336..99103ff 100644 --- a/opcodes/csky-dis.c +++ b/opcodes/csky-dis.c @@ -49,7 +49,7 @@ struct csky_dis_info disassemble_info *info; /* Opcode information. */ struct csky_opcode_info const *opinfo; - BFD_HOST_U_64_BIT isa; + uint64_t isa; /* The value of operand to show. */ int value; /* Whether to look up/print a symbol name. */ diff --git a/opcodes/csky-opc.h b/opcodes/csky-opc.h index b65efe1..d2db90e 100644 --- a/opcodes/csky-opc.h +++ b/opcodes/csky-opc.h @@ -271,8 +271,8 @@ struct csky_opcode /* Encodings for 32-bit opcodes. */ struct csky_opcode_info op32[OP_TABLE_NUM]; /* Instruction set flag. */ - BFD_HOST_U_64_BIT isa_flag16; - BFD_HOST_U_64_BIT isa_flag32; + uint64_t isa_flag16; + uint64_t isa_flag32; /* Whether this insn needs relocation, 0: no, !=0: yes. */ signed int reloc16; signed int reloc32; diff --git a/opcodes/ia64-dis.c b/opcodes/ia64-dis.c index 5eb3727..e76f403 100644 --- a/opcodes/ia64-dis.c +++ b/opcodes/ia64-dis.c @@ -73,7 +73,7 @@ print_insn_ia64 (bfd_vma memaddr, struct disassemble_info *info) const struct ia64_operand *odesc; const struct ia64_opcode *idesc; const char *err, *str, *tname; - BFD_HOST_U_64_BIT value; + uint64_t value; bfd_byte bundle[16]; enum ia64_unit unit; char regname[16]; |