diff options
author | Georg-Johann Lay <avr@gjlay.de> | 2013-03-11 18:57:27 +0000 |
---|---|---|
committer | Georg-Johann Lay <gjl@gcc.gnu.org> | 2013-03-11 18:57:27 +0000 |
commit | c2a939b1c8a99ccb332f15f7c46202c5c492f342 (patch) | |
tree | 3d8b0efb40d53332adc8d038ed113638cdf63549 | |
parent | 43b594b4c21ef51f56f95e29f4187db2a5841e9c (diff) | |
download | gcc-c2a939b1c8a99ccb332f15f7c46202c5c492f342.zip gcc-c2a939b1c8a99ccb332f15f7c46202c5c492f342.tar.gz gcc-c2a939b1c8a99ccb332f15f7c46202c5c492f342.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/avr/avr.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 54dd64c..a31a28e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/config/avr/avr.c b/gcc/config/avr/avr.c index f982990..a35f47e 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); } |