diff mbox

[avr,committed] Fix PR56591

Message ID 513E29AA.2060203@gjlay.de
State New
Headers show

Commit Message

Georg-Johann Lay March 11, 2013, 6:59 p.m. UTC
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.
diff mbox

Patch

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);
     }