http://gcc.gnu.org/r196604
This adds a missing space in output_operand_lossage.
Applied as obvious.
Johann
PR target/56591
* config/avr/avr.c (avr_print_operand): Add space after '%c' in
output_operand_lossage message.
Index: config/avr/avr.c
===================================================================
--- config/avr/avr.c (revision 196602)
+++ config/avr/avr.c (working copy)
@@ -2231,7 +2231,7 @@ avr_print_operand (FILE *file, rtx x, in
{
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);
}