Commit 19bb3aa5 by Jakub Jelinek Committed by Jakub Jelinek

re PR c++/38637 (ICE with template declaration of enum)

	PR c++/38637
	* decl.c (start_enum): If enumtype is error_mark_node, exit early.

	* g++.dg/cpp0x/enum2.C: New test.

From-SVN: r142946
parent bbddfe5b
2008-12-29 Jakub Jelinek <jakub@redhat.com>
PR c++/38637
* decl.c (start_enum): If enumtype is error_mark_node, exit early.
2008-12-28 Jakub Jelinek <jakub@redhat.com>
PR c++/38650
......
......@@ -10891,6 +10891,9 @@ start_enum (tree name, tree underlying_type, bool scoped_enum_p)
enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
}
if (enumtype == error_mark_node)
return enumtype;
if (scoped_enum_p)
{
SET_SCOPED_ENUM_P (enumtype, 1);
......
2008-12-29 Jakub Jelinek <jakub@redhat.com>
PR c++/38637
* g++.dg/cpp0x/enum2.C: New test.
2008-12-28 Andrew Pinski <pinskia@gmail.com>
PR libobjc/36610
......
// PR c++/38637
// { dg-do compile }
// { dg-options "-std=c++0x" }
template<int> enum E : int { e }; // { dg-error "template declaration of" }
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