diff options
author | Tamar Christina <tamar.christina@arm.com> | 2022-09-01 22:04:57 +0100 |
---|---|---|
committer | Tamar Christina <tamar.christina@arm.com> | 2022-09-02 09:23:11 +0100 |
commit | e69134e12551a4289292e3955525f84d99773d31 (patch) | |
tree | b0782d5837c0bb663c57c7545dd5db7c2be6fa57 | |
parent | a114570e360b1a185b92eab76cf255cb23c928a8 (diff) | |
download | gcc-e69134e12551a4289292e3955525f84d99773d31.zip gcc-e69134e12551a4289292e3955525f84d99773d31.tar.gz gcc-e69134e12551a4289292e3955525f84d99773d31.tar.bz2 |
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)
-rw-r--r-- | gcc/config/aarch64/aarch64.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/aarch64/aarch64.cc b/gcc/config/aarch64/aarch64.cc index 5c9e779..ac1153e 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 |