init.c (warn_placement_new_too_small): Add missing space in diagnostics.

* init.c (warn_placement_new_too_small): Add missing space in
	diagnostics.
	* parser.c (cp_parser_oacc_declare): Likewise.
	* mangle.c (maybe_check_abi_tags): Likewise.

From-SVN: r245407
This commit is contained in:
Jakub Jelinek 2017-02-13 22:54:01 +01:00 committed by Jakub Jelinek
parent 8a398bc545
commit 5995f59725
4 changed files with 10 additions and 4 deletions

View File

@ -1,5 +1,10 @@
2017-02-13 Jakub Jelinek <jakub@redhat.com> 2017-02-13 Jakub Jelinek <jakub@redhat.com>
* init.c (warn_placement_new_too_small): Add missing space in
diagnostics.
* parser.c (cp_parser_oacc_declare): Likewise.
* mangle.c (maybe_check_abi_tags): Likewise.
PR c++/79232 PR c++/79232
* typeck.c (cp_build_modify_expr): Handle properly COMPOUND_EXPRs * typeck.c (cp_build_modify_expr): Handle properly COMPOUND_EXPRs
on lhs that have {PRE{DEC,INC}REMENT,MODIFY,MIN,MAX,COND}_EXPR on lhs that have {PRE{DEC,INC}REMENT,MODIFY,MIN,MAX,COND}_EXPR

View File

@ -2606,7 +2606,7 @@ warn_placement_new_too_small (tree type, tree nelts, tree size, tree oper)
exact_size ? exact_size ?
"placement new constructing an object of type %qT " "placement new constructing an object of type %qT "
"and size %qwu in a region of type %qT and size %qwi" "and size %qwu in a region of type %qT and size %qwi"
: "placement new constructing an object of type %qT" : "placement new constructing an object of type %qT "
"and size %qwu in a region of type %qT and size " "and size %qwu in a region of type %qT and size "
"at most %qwu", "at most %qwu",
type, bytes_need, TREE_TYPE (oper), type, bytes_need, TREE_TYPE (oper),

View File

@ -4274,8 +4274,9 @@ maybe_check_abi_tags (tree t, tree for_decl, int ver)
for_decl, flag_abi_version, warn_abi_version); for_decl, flag_abi_version, warn_abi_version);
else else
warning_at (DECL_SOURCE_LOCATION (t), OPT_Wabi, warning_at (DECL_SOURCE_LOCATION (t), OPT_Wabi,
"the mangled name of the initialization guard variable for" "the mangled name of the initialization guard variable "
"%qD changes between -fabi-version=%d and -fabi-version=%d", "for %qD changes between -fabi-version=%d and "
"-fabi-version=%d",
t, flag_abi_version, warn_abi_version); t, flag_abi_version, warn_abi_version);
} }
} }

View File

@ -36177,7 +36177,7 @@ cp_parser_oacc_declare (cp_parser *parser, cp_token *pragma_tok)
|| !DECL_EXTERNAL (decl))) || !DECL_EXTERNAL (decl)))
{ {
error_at (loc, error_at (loc,
"%qD must be a global variable in" "%qD must be a global variable in "
"%<#pragma acc declare link%>", "%<#pragma acc declare link%>",
decl); decl);
error = true; error = true;