From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1984) id 6420D3858C54; Fri, 2 Sep 2022 08:23:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6420D3858C54 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1662107015; bh=EaB+HqK00NEL+KJSytiu8Hk/cJFcLx1LOH4cwgNJh2g=; h=From:To:Subject:Date:From; b=VofxPrAyGFrsyFpYIepx6PJDC6tF5Sa2WkTV8laFaTyadK789IVkhMXgXG3Ok8L28 9XY2rl/OlIceLDM499ITysdOtgNEhyjIfiITOhir1LsuyktIlvy6uAAh7P3SK6ZL7A QTQd+iJGo4naAji9TM87nLFWBILdxmk6ouNm4AVk= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Tamar Christina To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-8736] AArch64: Fix bootstrap failure due to dump_printf_loc format attribute uses [PR106782] X-Act-Checkin: gcc X-Git-Author: Tamar Christina X-Git-Refname: refs/heads/releases/gcc-12 X-Git-Oldrev: a114570e360b1a185b92eab76cf255cb23c928a8 X-Git-Newrev: e69134e12551a4289292e3955525f84d99773d31 Message-Id: <20220902082335.6420D3858C54@sourceware.org> Date: Fri, 2 Sep 2022 08:23:35 +0000 (GMT) List-Id: https://gcc.gnu.org/g:e69134e12551a4289292e3955525f84d99773d31 commit r12-8736-ge69134e12551a4289292e3955525f84d99773d31 Author: Tamar Christina Date: Thu Sep 1 22:04:57 2022 +0100 AArch64: Fix bootstrap failure due to dump_printf_loc format attribute uses [PR106782] This fixes the bootstrap failure on AArch64 following -Werror=format by correcting the print format modifiers in the backend. gcc/ChangeLog: PR other/106782 * config/aarch64/aarch64.cc (aarch64_vector_costs::prefer_unrolled_loop): Replace %u with HOST_WIDE_INT_PRINT_UNSIGNED. (cherry picked from commit b98c5262d02c13cdbbf3b985859b436adec94d90) Diff: --- gcc/config/aarch64/aarch64.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/config/aarch64/aarch64.cc b/gcc/config/aarch64/aarch64.cc index 5c9e7791a12..ac1153e31af 100644 --- a/gcc/config/aarch64/aarch64.cc +++ b/gcc/config/aarch64/aarch64.cc @@ -16677,7 +16677,8 @@ aarch64_vector_costs::prefer_unrolled_loop () const if (dump_enabled_p ()) dump_printf_loc (MSG_NOTE, vect_location, "Number of insns in" - " unrolled Advanced SIMD loop = %d\n", + " unrolled Advanced SIMD loop = " + HOST_WIDE_INT_PRINT_UNSIGNED "\n", m_unrolled_advsimd_stmts); /* The balance here is tricky. On the one hand, we can't be sure whether