Commit 72c4e4db by Joseph Myers Committed by Joseph Myers

c-decl.c (push_scope): Remove "\n" from end of diagnostic for too many nested scopes.

	* c-decl.c (push_scope): Remove "\n" from end of diagnostic for
	too many nested scopes.

From-SVN: r90936
parent 63dfe6ff
2004-11-19 Joseph S. Myers <joseph@codesourcery.com>
* c-decl.c (push_scope): Remove "\n" from end of diagnostic for
too many nested scopes.
2004-11-19 Dorit Naishlos <dorit@il.ibm.com> 2004-11-19 Dorit Naishlos <dorit@il.ibm.com>
PR tree-opt/18181 PR tree-opt/18181
......
...@@ -634,7 +634,7 @@ push_scope (void) ...@@ -634,7 +634,7 @@ push_scope (void)
if (current_scope && scope->depth == 0) if (current_scope && scope->depth == 0)
{ {
scope->depth--; scope->depth--;
sorry ("GCC supports only %u nested scopes\n", scope->depth); sorry ("GCC supports only %u nested scopes", scope->depth);
} }
current_scope = scope; current_scope = scope;
......
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