From 987610f2d6841a48009a170bd401112a23f040f2 Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Mon, 14 Jun 2021 08:18:58 +0200 Subject: gas: fold three as_warn() in emit_expr_with_reloc() Simply use the available abstraction instead of, effectively, trying to open-code it. --- gas/read.c | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'gas/read.c') diff --git a/gas/read.c b/gas/read.c index 380281d..2f93e1b 100644 --- a/gas/read.c +++ b/gas/read.c @@ -4539,18 +4539,8 @@ emit_expr_with_reloc (expressionS *exp, || (get & hibit) == 0)) { /* Leading bits contain both 0s & 1s. */ -#if defined (BFD64) && BFD_HOST_64BIT_LONG_LONG -#ifndef __MSVCRT__ - as_warn (_("value 0x%llx truncated to 0x%llx"), - (unsigned long long) get, (unsigned long long) use); -#else - as_warn (_("value 0x%I64x truncated to 0x%I64x"), - (unsigned long long) get, (unsigned long long) use); -#endif -#else - as_warn (_("value 0x%lx truncated to 0x%lx"), - (unsigned long) get, (unsigned long) use); -#endif + as_warn (_("value 0x%" BFD_VMA_FMT "x truncated to 0x%" BFD_VMA_FMT "x"), + get, use); } /* Put bytes in right order. */ md_number_to_chars (p, use, (int) nbytes); -- cgit v1.1