From 63c79a7509c1ce5e8439d23a8f2de096ce0dec7c Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Tue, 12 Mar 2019 11:07:25 +0100 Subject: re PR target/52726 (Composed error message will not get translated) PR target/52726 * config/s390/s390.md (tabort): Use %wd instead of HOST_WIDE_INT_PRINT_DEC in error message, reword to avoid two capital letters and periods. * config/tilepro/tilepro.c (tilepro_print_operand): Use %wd in output_operand_lossage instead of HOST_WIDE_INT_PRINT_DEC, replace 's with %< and %>. From-SVN: r269607 --- gcc/config/tilepro/tilepro.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gcc/config/tilepro/tilepro.c') diff --git a/gcc/config/tilepro/tilepro.c b/gcc/config/tilepro/tilepro.c index e1ae7d8..0cbea45 100644 --- a/gcc/config/tilepro/tilepro.c +++ b/gcc/config/tilepro/tilepro.c @@ -4771,8 +4771,7 @@ tilepro_print_operand (FILE *file, rtx x, int code) i = exact_log2 (n); if (i < 0) { - output_operand_lossage ("invalid %%t operand '" - HOST_WIDE_INT_PRINT_DEC "'", n); + output_operand_lossage ("invalid %%t operand %<%wd%>", n); return; } -- cgit v1.1