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/lra-constraints.c | |
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/lra-constraints.c')
-rw-r--r-- | gcc/lra-constraints.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lra-constraints.c b/gcc/lra-constraints.c index 629dc5d..afbd5d0 100644 --- a/gcc/lra-constraints.c +++ b/gcc/lra-constraints.c @@ -2681,7 +2681,7 @@ process_alt_operands (int only_alternative) if (lra_dump_file != NULL) fprintf (lra_dump_file, " alt=%d: reload pseudo for op %d " - " cannot hold the mode value -- refuse\n", + "cannot hold the mode value -- refuse\n", nalt, nop); goto fail; } |