Commit 156fc2bb by Kriang Lerdsuwanakij Committed by Kriang Lerdsuwanakij

decl.c (start_decl): Exit if push_template_decl returns error_mark_node.

	* decl.c (start_decl): Exit if push_template_decl returns
	error_mark_node.

From-SVN: r72760
parent bce988a2
2003-10-22 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* decl.c (start_decl): Exit if push_template_decl returns
error_mark_node.
2003-10-20 Kazu Hirata <kazu@cs.umass.edu>
* ChangeLog: Fix typos.
......
......@@ -3788,6 +3788,8 @@ start_decl (tree declarator,
if (processing_template_decl)
tem = push_template_decl (tem);
if (tem == error_mark_node)
return error_mark_node;
#if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
/* Tell the back-end to use or not use .common as appropriate. If we say
......
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