From: Jakub Jelinek Date: Fri, 12 Apr 2019 08:10:51 +0000 (+0200) Subject: re PR target/52726 (Composed error message will not get translated) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0ef88b2031564faf39396793f272aa0bc394d411;p=gcc.git re PR target/52726 (Composed error message will not get translated) PR target/52726 * config/tilepro/tilepro.c (tilepro_print_operand): Use just "invalid %%t operand" in output_operand_lossage message. From-SVN: r270308 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fd3e7c631b4..dbda8ac5fab 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2019-04-12 Jakub Jelinek + + PR target/52726 + * config/tilepro/tilepro.c (tilepro_print_operand): Use just + "invalid %%t operand" in output_operand_lossage message. + 2019-04-12 Andreas Krebbel * config/s390/predicates.md (permute_pattern_operand): New diff --git a/gcc/config/tilepro/tilepro.c b/gcc/config/tilepro/tilepro.c index 0cbea458d08..c8d69d32f2f 100644 --- a/gcc/config/tilepro/tilepro.c +++ b/gcc/config/tilepro/tilepro.c @@ -4771,7 +4771,7 @@ tilepro_print_operand (FILE *file, rtx x, int code) i = exact_log2 (n); if (i < 0) { - output_operand_lossage ("invalid %%t operand %<%wd%>", n); + output_operand_lossage ("invalid %%t operand"); return; }