From: Georg-Johann Lay Date: Mon, 11 Mar 2013 18:57:27 +0000 (+0000) Subject: re PR target/56591 (Missing space) X-Git-Tag: releases/gcc-4.8.0~101 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c2a939b1c8a99ccb332f15f7c46202c5c492f342;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 54dd64c7059a..a31a28e92ccb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-03-11 Georg-Johann Lay + + PR target/56591 + * config/avr/avr.c (avr_print_operand): Add space after '%c' in + output_operand_lossage message. + 2013-03-11 Richard Earnshaw PR target/56470 diff --git a/gcc/config/avr/avr.c b/gcc/config/avr/avr.c index f98299043875..a35f47e83d67 100644 --- a/gcc/config/avr/avr.c +++ b/gcc/config/avr/avr.c @@ -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); }