Commit 32d49134 by Geoffrey Keating Committed by Geoffrey Keating

decl2.c (start_objects): Mark constructor-runnning function as artificial.

	* decl2.c (start_objects): Mark constructor-runnning function
	as artificial.

From-SVN: r126080
parent 8aa19d95
2007-06-28 Geoffrey Keating <geoffk@apple.com>
* decl2.c (start_objects): Mark constructor-runnning function
as artificial.
2007-06-26 Simon Martin <simartin@users.sourceforge.net>
PR c++/32111
......
......@@ -2320,6 +2320,10 @@ start_objects (int method_type, int initp)
TREE_PUBLIC (current_function_decl) = 0;
/* Mark as artificial because it's not explicitly in the user's
source code. */
DECL_ARTIFICIAL (current_function_decl) = 1;
/* Mark this declaration as used to avoid spurious warnings. */
TREE_USED (current_function_decl) = 1;
......
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