Commit c2a939b1 by Georg-Johann Lay Committed by Georg-Johann Lay

re PR target/56591 (Missing space)

	PR target/56591
	* config/avr/avr.c (avr_print_operand): Add space after '%c' in
	output_operand_lossage message.

From-SVN: r196604
parent 43b594b4
2013-03-11 Georg-Johann Lay <avr@gjlay.de>
PR target/56591
* config/avr/avr.c (avr_print_operand): Add space after '%c' in
output_operand_lossage message.
2013-03-11 Richard Earnshaw <rearnsha@arm.com>
PR target/56470
......
......@@ -2231,7 +2231,7 @@ avr_print_operand (FILE *file, rtx x, int code)
{
HOST_WIDE_INT ival = INTVAL (avr_to_int_mode (x));
if (code != 0)
output_operand_lossage ("Unsupported code '%c'for fixed-point:",
output_operand_lossage ("Unsupported code '%c' for fixed-point:",
code);
fprintf (file, HOST_WIDE_INT_PRINT_DEC, ival);
}
......
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