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. --- bfd/irix-core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bfd/irix-core.c') diff --git a/bfd/irix-core.c b/bfd/irix-core.c index 694fe2e2e07..b12aef9ce8b 100644 --- a/bfd/irix-core.c +++ b/bfd/irix-core.c @@ -275,9 +275,9 @@ swap_abort(void) #define NO_GET ((bfd_vma (*) (const void *)) swap_abort) #define NO_PUT ((void (*) (bfd_vma, void *)) swap_abort) #define NO_GETS ((bfd_signed_vma (*) (const void *)) swap_abort) -#define NO_GET64 ((bfd_uint64_t (*) (const void *)) swap_abort) -#define NO_PUT64 ((void (*) (bfd_uint64_t, void *)) swap_abort) -#define NO_GETS64 ((bfd_int64_t (*) (const void *)) swap_abort) +#define NO_GET64 ((uint64_t (*) (const void *)) swap_abort) +#define NO_PUT64 ((void (*) (uint64_t, void *)) swap_abort) +#define NO_GETS64 ((int64_t (*) (const void *)) swap_abort) const bfd_target core_irix_vec = { -- cgit v1.2.1