From: Lee Millward Date: Sun, 25 Jun 2006 11:07:05 +0000 (+0000) Subject: re PR c++/28051 (ICE on invalid conversion operator) X-Git-Tag: releases/gcc-4.2.0~2279 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0fdc23b94d00f5c541a71456b0704534f4731ddc;p=thirdparty%2Fgcc.git re PR c++/28051 (ICE on invalid conversion operator) PR c++/28051 * mangle.c (mangle_conv_op_name_for_type): Check for invalid types. *name-lookup.c (push_class_level_binding): Robustify. (do_class_using_decl): Return early if name is error_mark_node. From-SVN: r114985 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 5a3ac21e0cde..dae7f43830df 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,11 @@ +2006-06-25 Lee Millward + + PR c++/28051 + * mangle.c (mangle_conv_op_name_for_type): Check for + invalid types. + * name-lookup.c (push_class_level_binding): Robustify. + (do_class_using_decl): Return early if name is error_mark_node. + 2006-06-23 Steve Ellcey PR c++/28114 diff --git a/gcc/cp/mangle.c b/gcc/cp/mangle.c index b8702924d7de..8c8eff928057 100644 --- a/gcc/cp/mangle.c +++ b/gcc/cp/mangle.c @@ -2816,6 +2816,9 @@ mangle_conv_op_name_for_type (const tree type) void **slot; tree identifier; + if (type == error_mark_node) + return error_mark_node; + if (conv_type_names == NULL) conv_type_names = htab_create_ggc (31, &hash_type, &compare_type, NULL); diff --git a/gcc/cp/name-lookup.c b/gcc/cp/name-lookup.c index 0d195f9a3e8c..ea985e418b16 100644 --- a/gcc/cp/name-lookup.c +++ b/gcc/cp/name-lookup.c @@ -2609,6 +2609,9 @@ push_class_level_binding (tree name, tree x) if (!class_binding_level) POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true); + if (name == error_mark_node) + POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, false); + /* Check for invalid member names. */ gcc_assert (TYPE_BEING_DEFINED (current_class_type)); /* We could have been passed a tree list if this is an ambiguous @@ -2763,6 +2766,9 @@ do_class_using_decl (tree scope, tree name) tree base_binfo; int i; + if (name == error_mark_node) + return NULL_TREE; + if (!scope || !TYPE_P (scope)) { error ("using-declaration for non-member at class scope"); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a8598aa4f92e..09a62657b6fe 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2006-06-25 Lee Millward + + PR c++/28051 + * g++.dg/template/using13.C: New test. + 2006-06-24 Francois-Xavier Coudert PR fortran/28081 diff --git a/gcc/testsuite/g++.dg/template/using13.C b/gcc/testsuite/g++.dg/template/using13.C new file mode 100644 index 000000000000..3f86ede3770f --- /dev/null +++ b/gcc/testsuite/g++.dg/template/using13.C @@ -0,0 +1,11 @@ +//PR c++/28051 + +template struct A {}; + +template struct B : A +{ + using A::operator typename A::X; // { dg-error "no type named" } +}; + +B<0> b; +