Commit d48ebde1 by Nathan Sidwell Committed by Nathan Sidwell

decl.c (build_ptrmemfunc_type): Allow error_mark_node.

cp:
	* decl.c (build_ptrmemfunc_type): Allow error_mark_node.
testsuite:
	* g++.old-deja/g++.pt/crash60.C: New test.

From-SVN: r37289
parent 665d66d6
2000-11-07 Nathan Sidwell <nathan@codesourcery.com>
* decl.c (build_ptrmemfunc_type): Allow error_mark_node.
2000-11-05 Joseph S. Myers <jsm28@cam.ac.uk> 2000-11-05 Joseph S. Myers <jsm28@cam.ac.uk>
* Make-lang.in (c++.distdir): Remove. * Make-lang.in (c++.distdir): Remove.
......
...@@ -9215,6 +9215,9 @@ build_ptrmemfunc_type (type) ...@@ -9215,6 +9215,9 @@ build_ptrmemfunc_type (type)
tree u; tree u;
tree unqualified_variant = NULL_TREE; tree unqualified_variant = NULL_TREE;
if (type == error_mark_node)
return type;
/* If a canonical type already exists for this type, use it. We use /* If a canonical type already exists for this type, use it. We use
this method instead of type_hash_canon, because it only does a this method instead of type_hash_canon, because it only does a
simple equality check on the list of field members. */ simple equality check on the list of field members. */
......
2000-11-07 Nathan Sidwell <nathan@codesourcery.com>
* g++.old-deja/g++.pt/crash60.C: New test.
2000-11-06 Jakub Jelinek <jakub@redhat.com> 2000-11-06 Jakub Jelinek <jakub@redhat.com>
* g++.old-deja/g++.other/crash24.C: New test. * g++.old-deja/g++.other/crash24.C: New test.
......
// Build don't link:
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 7 Nov 2000 <nathan@codesourcery.com>
// We ICE'd rather than fail to instantiate.
template< typename SID, class SDR >
void k( SID sid, SDR* p,
void (SDR::*)
( typename SID::T ) );
struct E { };
struct S { void f( int ); };
void f()
{
k( E(), (S*)0, &S::f ); // ERROR - no match
}
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