Commit d4968a11 by Zack Weinberg Committed by Zack Weinberg

c-decl.c (diagnose_arglist_conflict): Add missing space to diagnostic messages.

	* c-decl.c (diagnose_arglist_conflict): Add missing space to
	diagnostic messages.

From-SVN: r75691
parent 70adfc36
2004-01-11 Zack Weinberg <zack@codesourcery.com>
* c-decl.c (diagnose_arglist_conflict): Add missing space to
diagnostic messages.
2004-01-11 Jakub Jelinek <jakub@redhat.com> 2004-01-11 Jakub Jelinek <jakub@redhat.com>
PR middle-end/13392 PR middle-end/13392
......
...@@ -818,14 +818,14 @@ diagnose_arglist_conflict (tree newdecl, tree olddecl, ...@@ -818,14 +818,14 @@ diagnose_arglist_conflict (tree newdecl, tree olddecl,
if (TREE_CHAIN (t) == 0 if (TREE_CHAIN (t) == 0
&& TYPE_MAIN_VARIANT (type) != void_type_node) && TYPE_MAIN_VARIANT (type) != void_type_node)
{ {
inform ("a parameter list with an ellipsis can't match" inform ("a parameter list with an ellipsis can't match "
"an empty parameter name list declaration"); "an empty parameter name list declaration");
break; break;
} }
if (c_type_promotes_to (type) != type) if (c_type_promotes_to (type) != type)
{ {
inform ("an argument type that has a default promotion can't match" inform ("an argument type that has a default promotion can't match "
"an empty parameter name list declaration"); "an empty parameter name list declaration");
break; break;
} }
......
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