From b2d49fe5aa6529689c71df4a0635041725cb94d1 Mon Sep 17 00:00:00 2001 From: Nathan Froyd <froydnj@codesourcery.com> Date: Thu, 16 Dec 2010 01:33:03 +0000 Subject: [PATCH] =?UTF-8?q?re=20PR=20c++/46852=20(ICE:=20tree=20check:=20e?= =?UTF-8?q?xpected=20class=20=E2=80=98type=E2=80=99,=20have=20=E2=80=98exc?= =?UTF-8?q?eptional=E2=80=99=20(error=5Fmark)=20in=20cp=5Fparser=5Fclass?= =?UTF-8?q?=5Fspecifier,=20at=20cp/parser.c:16947)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gcc/cp/ PR c++/46852 * parser.c (cp_parser_class_specifier): Check for TYPE_P. gcc/testsuite/ PR c++/46852 * g++.dg/pr46852.C: New test. From-SVN: r167894 --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/parser.c | 4 +++- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/g++.dg/pr46852.C | 7 +++++++ 4 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 gcc/testsuite/g++.dg/pr46852.C diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index b28af3c0c8ff..e6a9610b29b0 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2010-12-15 Nathan Froyd <froydnj@codesourcery.com> + + PR c++/46852 + * parser.c (cp_parser_class_specifier): Check for TYPE_P. + 2010-12-15 Jakub Jelinek <jakub@redhat.com> PR debug/46815 diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 4c8ca7288c63..cb8b79782ef8 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -16937,7 +16937,9 @@ cp_parser_class_specifier (cp_parser* parser) break; } - if (want_semicolon) + /* If we don't have a type, then something is very wrong and we + shouldn't try to do anything clever. */ + if (TYPE_P (type) && want_semicolon) { cp_token_position prev = cp_lexer_previous_token_position (parser->lexer); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8ca61f499182..94a48eb098b3 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2010-12-15 Nathan Froyd <froydnj@codesourcery.com> + + PR c++/46852 + * g++.dg/pr46852.C: New test. + 2010-12-16 Jan Hubicka <jh@suse.cz> PR middle-end/46939 diff --git a/gcc/testsuite/g++.dg/pr46852.C b/gcc/testsuite/g++.dg/pr46852.C new file mode 100644 index 000000000000..2c9d8dd41446 --- /dev/null +++ b/gcc/testsuite/g++.dg/pr46852.C @@ -0,0 +1,7 @@ +// PR c++/46852 +// { dg-do compile } + +template +< +class +{ // { dg-error "" } -- GitLab