diff options
author | Jakub Jelinek <jakub@redhat.com> | 2019-04-12 10:10:51 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2019-04-12 10:10:51 +0200 |
commit | 0ef88b2031564faf39396793f272aa0bc394d411 (patch) | |
tree | 669f50eff9d837b005f9e1bd8e6955a47de42f71 /gcc | |
parent | ab541024457cc075a5129fef1bc9d8229208640b (diff) | |
download | gcc-0ef88b2031564faf39396793f272aa0bc394d411.zip gcc-0ef88b2031564faf39396793f272aa0bc394d411.tar.gz gcc-0ef88b2031564faf39396793f272aa0bc394d411.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/tilepro/tilepro.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fd3e7c6..dbda8ac 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2019-04-12 Jakub Jelinek <jakub@redhat.com> + + 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 <krebbel@linux.ibm.com> * config/s390/predicates.md (permute_pattern_operand): New diff --git a/gcc/config/tilepro/tilepro.c b/gcc/config/tilepro/tilepro.c index 0cbea45..c8d69d3 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; } |