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/ia64-dis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'opcodes/ia64-dis.c') diff --git a/opcodes/ia64-dis.c b/opcodes/ia64-dis.c index 5eb37277a5d..e76f40393c6 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]; -- cgit v1.2.1