mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 20:51:45 +08:00
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:
parent
027e304144
commit
02b7dd7f82
@ -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;
|
||||
}
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user