diff options
author | Jakub Jelinek <jakub@redhat.com> | 2019-03-08 11:51:28 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2019-03-08 11:51:28 +0100 |
commit | 0d7bac69b78fbb3bc2d088e7777472d261ea0a21 (patch) | |
tree | 1c541e70165935ccc8c6c6de9e9a46066e63c168 /gcc/config/avr | |
parent | 723a52f9512a22af0f3f6758770b60dd8dfb7d47 (diff) | |
download | gcc-0d7bac69b78fbb3bc2d088e7777472d261ea0a21.zip gcc-0d7bac69b78fbb3bc2d088e7777472d261ea0a21.tar.gz gcc-0d7bac69b78fbb3bc2d088e7777472d261ea0a21.tar.bz2 |
re PR other/80058 (fix double spaces in string literals everywhere)
PR other/80058
* lra-constraints.c (process_alt_operands): Avoid one space before
" at the end of line and another after " on another line in a string
literal.
* attribs.c (handle_dll_attribute): Likewise.
* config/avr/avr-devices.c (avr_texinfo): Likewise.
cp/
* parser.c (cp_parser_template_declaration_after_parameters): Avoid
one space before " at the end of line and another after " on another
line in a string literal.
fortran/
* arith.c (gfc_complex2complex): Avoid two spaces in the middle of
diagnostics.
* resolve.c (resolve_allocate_expr): Likewise.
From-SVN: r269487
Diffstat (limited to 'gcc/config/avr')
-rw-r--r-- | gcc/config/avr/avr-devices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/avr/avr-devices.c b/gcc/config/avr/avr-devices.c index e6ced29..8688675 100644 --- a/gcc/config/avr/avr-devices.c +++ b/gcc/config/avr/avr-devices.c @@ -76,7 +76,7 @@ avr_texinfo[] = "the @code{MOVW} instruction." }, { ARCH_AVR3, "``Classic'' devices with 16@tie{}KiB up to 64@tie{}KiB of " - " program memory." }, + "program memory." }, { ARCH_AVR31, "``Classic'' devices with 128@tie{}KiB of program memory." }, { ARCH_AVR35, |