From 0fdc23b94d00f5c541a71456b0704534f4731ddc Mon Sep 17 00:00:00 2001 From: Lee Millward Date: Sun, 25 Jun 2006 11:07:05 +0000 Subject: 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 --- gcc/cp/ChangeLog | 8 ++++++++ gcc/cp/mangle.c | 3 +++ gcc/cp/name-lookup.c | 6 ++++++ 3 files changed, 17 insertions(+) (limited to 'gcc/cp') diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 5a3ac21..dae7f43 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 b870292..8c8eff9 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 0d195f9..ea985e4 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"); -- cgit v1.1