]> gcc.gnu.org Git - gcc.git/commitdiff
re PR target/56591 (Missing space)
authorGeorg-Johann Lay <avr@gjlay.de>
Mon, 11 Mar 2013 18:57:27 +0000 (18:57 +0000)
committerGeorg-Johann Lay <gjl@gcc.gnu.org>
Mon, 11 Mar 2013 18:57:27 +0000 (18:57 +0000)
PR target/56591
* config/avr/avr.c (avr_print_operand): Add space after '%c' in
output_operand_lossage message.

From-SVN: r196604

gcc/ChangeLog
gcc/config/avr/avr.c

index 54dd64c7059a3fefacf958d9b793c73b76f0a32c..a31a28e92ccb34d048854568bebfa469464d393f 100644 (file)
@@ -1,3 +1,9 @@
+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
index f98299043875286e49c2b3d215a9d61ec5ab8e63..a35f47e83d67fecb0479ed0d111cc6149490c481 100644 (file)
@@ -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);
     }
This page took 0.080705 seconds and 5 git commands to generate.