Add missing space in various string literals

After more than 2 years I've run my
https://gcc.gnu.org/ml/gcc-patches/2017-02/msg00844.html
script again.  While it has lots of false positives, it discovered
two bugs.

2022-03-07  Jakub Jelinek  <jakub@redhat.com>

gcc/c/
	* c-parser.cc (c_parser_omp_clause_map): Add missing space in string
	literal.
gcc/cp/
	* parser.cc (cp_parser_omp_clause_map): Add missing space in string
	literal.
This commit is contained in:
Jakub Jelinek 2022-03-07 15:16:56 +01:00
parent 027e304144
commit 02b7dd7f82
2 changed files with 4 additions and 4 deletions

View File

@ -16230,8 +16230,8 @@ c_parser_omp_clause_map (c_parser *parser, tree list)
else
{
c_parser_error (parser, "%<#pragma omp target%> with "
"modifier other than %<always%> or %<close%>"
"on %<map%> clause");
"modifier other than %<always%> or "
"%<close%> on %<map%> clause");
parens.skip_until_found_close (parser);
return list;
}

View File

@ -39432,8 +39432,8 @@ cp_parser_omp_clause_map (cp_parser *parser, tree list)
else
{
cp_parser_error (parser, "%<#pragma omp target%> with "
"modifier other than %<always%> or %<close%>"
"on %<map%> clause");
"modifier other than %<always%> or "
"%<close%> on %<map%> clause");
cp_parser_skip_to_closing_parenthesis (parser,
/*recovering=*/true,
/*or_comma=*/false,