From 0e3c1eebb22e0ade28b619fb41f42d66ed6fb145 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 27 May 2022 12:37:21 +0930 Subject: Remove use of bfd_uint64_t and similar Requiring C99 means that uses of bfd_uint64_t can be replaced with uint64_t, and similarly for bfd_int64_t, BFD_HOST_U_64_BIT, and BFD_HOST_64_BIT. This patch does that, removes #ifdef BFD_HOST_* and tidies a few places that print 64-bit values. --- opcodes/csky-opc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'opcodes/csky-opc.h') diff --git a/opcodes/csky-opc.h b/opcodes/csky-opc.h index b65efe19d9f..d2db90ede95 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; -- cgit v1.2.1