From patchwork Mon Oct 8 19:23:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [C++] Fix ICE in cp_tree_equal (PR c++/54858) Date: Mon, 08 Oct 2012 09:23:26 -0000 From: Jakub Jelinek X-Patchwork-Id: 190110 Message-Id: <20121008192326.GB26735@tucnak.redhat.com> To: Jason Merrill Cc: gcc-patches@gcc.gnu.org Hi! The following testcase ICEs because cp_tree_equal doesn't handle FIELD_DECLs (in 4.4 it was enough to have c0/d0 and c1/d1 in the testcase, now 12 lines are needed due to introduction of a hash table). Fixed thusly, bootstrapped/regtested on x86_64-linux and i686-linux, ok for trunk/4.7? 2012-10-08 Jakub Jelinek PR c++/54858 * tree.c (cp_tree_equal): Handle FIELD_DECL. * g++.dg/template/crash113.C: New test. Jakub --- gcc/cp/tree.c.jj 2012-10-05 21:26:54.000000000 +0200 +++ gcc/cp/tree.c 2012-10-08 18:19:00.897543649 +0200 @@ -2559,6 +2559,7 @@ cp_tree_equal (tree t1, tree t2) case VAR_DECL: case CONST_DECL: + case FIELD_DECL: case FUNCTION_DECL: case TEMPLATE_DECL: case IDENTIFIER_NODE: --- gcc/testsuite/g++.dg/template/pr54858.C.jj 2012-10-08 18:15:55.470586784 +0200 +++ gcc/testsuite/g++.dg/template/pr54858.C 2012-10-08 18:14:28.000000000 +0200 @@ -0,0 +1,21 @@ +// PR c++/54858 +// { dg-do compile } + +template struct A {}; +template struct B {}; +template struct C +{ + A<0> c0; B, &C::c0> d0; // { dg-error "could not convert template argument" } + A<0> c1; B, &C::c1> d1; // { dg-error "could not convert template argument" } + A<0> c2; B, &C::c2> d2; // { dg-error "could not convert template argument" } + A<0> c3; B, &C::c3> d3; // { dg-error "could not convert template argument" } + A<0> c4; B, &C::c4> d4; // { dg-error "could not convert template argument" } + A<0> c5; B, &C::c5> d5; // { dg-error "could not convert template argument" } + A<0> c6; B, &C::c6> d6; // { dg-error "could not convert template argument" } + A<0> c7; B, &C::c7> d7; // { dg-error "could not convert template argument" } + A<0> c8; B, &C::c8> d8; // { dg-error "could not convert template argument" } + A<0> c9; B, &C::c9> d9; // { dg-error "could not convert template argument" } + A<0> ca; B, &C::ca> da; // { dg-error "could not convert template argument" } + A<0> cb; B, &C::cb> db; // { dg-error "could not convert template argument" } +}; +C e;