Backport:
2004-12-21 Mark Mitchell <mark@codesourcery.com>
PR c++/19034
* tree.c (cp_tree_equal): Handle OVERLOAD.
Backport:
2004-12-21 Mark Mitchell <mark@codesourcery.com>
PR c++/19034
* g++.dg/template/crash30.C: New test.
From-SVN: r99263
+2005-05-04 Mark Mitchell <mark@codesourcery.com>
+
+ Backport:
+ 2004-12-21 Mark Mitchell <mark@codesourcery.com>
+ PR c++/19034
+ * tree.c (cp_tree_equal): Handle OVERLOAD.
+
2005-05-02 Mark Mitchell <mark@codesourcery.com>
Revert:
return same_type_p (PTRMEM_CST_CLASS (t1), PTRMEM_CST_CLASS (t2));
+ case OVERLOAD:
+ if (OVL_FUNCTION (t1) != OVL_FUNCTION (t2))
+ return false;
+ return cp_tree_equal (OVL_CHAIN (t1), OVL_CHAIN (t2));
+
default:
break;
}
+2005-05-04 Mark Mitchell <mark@codesourcery.com>
+
+ Backport:
+ 2004-12-21 Mark Mitchell <mark@codesourcery.com>
+ PR c++/19034
+ * g++.dg/template/crash30.C: New test.
+
2005-05-02 Mark Mitchell <mark@codesourcery.com>
Backport: