summaryrefslogtreecommitdiff
path: root/gcc/config/tilepro
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2019-03-12 11:07:25 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2019-03-12 11:07:25 +0100
commit63c79a7509c1ce5e8439d23a8f2de096ce0dec7c (patch)
tree3c665902a811e07028c6c7dfba6e0b060b650e16 /gcc/config/tilepro
parent1c178a5af523f2baf7c0501f86190ea3e2a45cbf (diff)
downloadgcc-63c79a7509c1ce5e8439d23a8f2de096ce0dec7c.tar.gz
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
Diffstat (limited to 'gcc/config/tilepro')
-rw-r--r--gcc/config/tilepro/tilepro.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/tilepro/tilepro.c b/gcc/config/tilepro/tilepro.c
index e1ae7d83782..0cbea458d08 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;
}