https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99288
--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Jakub Jelinek <ja...@gcc.gnu.org>: https://gcc.gnu.org/g:652623f7c68594b1825a333bf8e83e87d1c3f523 commit r11-7426-g652623f7c68594b1825a333bf8e83e87d1c3f523 Author: Jakub Jelinek <ja...@redhat.com> Date: Sat Feb 27 10:43:28 2021 +0100 gcse, ipa-devirt: Use %wd/%wu instead of HOST_WIDE_INT_PRINT* in diagnostics [PR99288] HOST_WIDE_INT_PRINT* in the string literals of warning/error/inform etc. make those messages non-translatable, and we have a perfectly fine alternative when not using system *printf - %w{d,u}. 2021-02-27 Jakub Jelinek <ja...@redhat.com> PR other/99288 * gcse.c (gcse_or_cprop_is_too_expensive): Use %wu instead of HOST_WIDE_INT_PRINT_UNSIGNED in warning format string. * ipa-devirt.c (ipa_odr_read_section): Use %wd instead of HOST_WIDE_INT_PRINT_DEC in inform format string. Fix comment typos.