Commit 5995f597 by Jakub Jelinek Committed by Jakub Jelinek

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
parent 8a398bc5
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
* typeck.c (cp_build_modify_expr): Handle properly COMPOUND_EXPRs
on lhs that have {PRE{DEC,INC}REMENT,MODIFY,MIN,MAX,COND}_EXPR
......
......@@ -2606,7 +2606,7 @@ warn_placement_new_too_small (tree type, tree nelts, tree size, tree oper)
exact_size ?
"placement new constructing an object of type %qT "
"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 "
"at most %qwu",
type, bytes_need, TREE_TYPE (oper),
......
......@@ -4274,8 +4274,9 @@ maybe_check_abi_tags (tree t, tree for_decl, int ver)
for_decl, flag_abi_version, warn_abi_version);
else
warning_at (DECL_SOURCE_LOCATION (t), OPT_Wabi,
"the mangled name of the initialization guard variable for"
"%qD changes between -fabi-version=%d and -fabi-version=%d",
"the mangled name of the initialization guard variable "
"for %qD changes between -fabi-version=%d and "
"-fabi-version=%d",
t, flag_abi_version, warn_abi_version);
}
}
......
......@@ -36177,7 +36177,7 @@ cp_parser_oacc_declare (cp_parser *parser, cp_token *pragma_tok)
|| !DECL_EXTERNAL (decl)))
{
error_at (loc,
"%qD must be a global variable in"
"%qD must be a global variable in "
"%<#pragma acc declare link%>",
decl);
error = true;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment