Commit 63c79a75 by Jakub Jelinek Committed by Jakub Jelinek

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
parent 1c178a5a
2019-03-12 Jakub Jelinek <jakub@redhat.com> 2019-03-12 Jakub Jelinek <jakub@redhat.com>
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 %>.
PR middle-end/89663 PR middle-end/89663
* builtins.c (expand_builtin_int_roundingfn, * builtins.c (expand_builtin_int_roundingfn,
expand_builtin_int_roundingfn_2): Return NULL_RTX instead of expand_builtin_int_roundingfn_2): Return NULL_RTX instead of
......
...@@ -11474,9 +11474,8 @@ ...@@ -11474,9 +11474,8 @@
if (CONST_INT_P (operands[0]) if (CONST_INT_P (operands[0])
&& INTVAL (operands[0]) >= 0 && INTVAL (operands[0]) <= 255) && INTVAL (operands[0]) >= 0 && INTVAL (operands[0]) <= 255)
{ {
error ("invalid transaction abort code: " HOST_WIDE_INT_PRINT_DEC error ("invalid transaction abort code: %wd; values in range 0 "
". Values in range 0 through 255 are reserved.", "through 255 are reserved", INTVAL (operands[0]));
INTVAL (operands[0]));
FAIL; FAIL;
} }
}) })
......
...@@ -4771,8 +4771,7 @@ tilepro_print_operand (FILE *file, rtx x, int code) ...@@ -4771,8 +4771,7 @@ tilepro_print_operand (FILE *file, rtx x, int code)
i = exact_log2 (n); i = exact_log2 (n);
if (i < 0) if (i < 0)
{ {
output_operand_lossage ("invalid %%t operand '" output_operand_lossage ("invalid %%t operand %<%wd%>", n);
HOST_WIDE_INT_PRINT_DEC "'", n);
return; return;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment