+2004-07-15 Mark Mitchell <mark@codesourcery.com>
+
+ * name-lookup.c (set_inherited_value_binding_p): Add class_type
+ parameter.
+ (get_class_binding): Adjust.
+ (push_class_level_binding): Don't use set_inherited_value_binding_p.
+
2004-07-15 Nathan Sidwell <nathan@codesourcery.com>
* class.c(finish_struct_bits): Don't set TYPE_HAS_CONVERSION here.
2004-07-14 Mark Mitchell <mark@codesourcery.com>
* lex.c (cxx_make_type): Remove call to get_pointer_type.
- (set_inherited_value_binding_p): Add class_type parameter.
- (get_class_binding): Adjust.
- (push_class_level_binding): Don't use set_inherited_value_binding_p.
* cp-tree.h (IDENTIFIER_VALUE): Remove.
(BINFO_PUSHDECLS_MARKED): Likewise.
/* Set INHERITED_VALUE_BINDING_P on BINDING to true or false, as
appropriate. DECL is the value to which a name has just been
- bound. */
+ bound. CLASS_TYPE is the class in which the lookup occurred. */
static void
-set_inherited_value_binding_p (cxx_binding *binding, tree decl)
+set_inherited_value_binding_p (cxx_binding *binding, tree decl,
+ tree class_type)
{
if (binding->value == decl && TREE_CODE (decl) != TREE_LIST)
{
context = context_for_name_lookup (decl);
}
- if (is_properly_derived_from (current_class_type, context))
+ if (is_properly_derived_from (class_type, context))
INHERITED_VALUE_BINDING_P (binding) = 1;
else
INHERITED_VALUE_BINDING_P (binding) = 0;
scope);
/* This is a class-scope binding, not a block-scope binding. */
LOCAL_BINDING_P (binding) = 0;
- set_inherited_value_binding_p (binding, value_binding);
+ set_inherited_value_binding_p (binding, value_binding, class_type);
}
else
binding = NULL;
{
binding->value = x;
/* It is always safe to clear INHERITED_VALUE_BINDING_P
- here. That flag is only set when setup_class_bindings
- inserts a binding from a base class, and
- setup_class_bindings only inserts a binding once for
- every name declared in the class and its base classes.
- So, if we see a second binding for this name, it must be
- coming from a definition in the body of the class
- itself. */
+ here. This function is only used to register bindings
+ from with the class definition itself. */
INHERITED_VALUE_BINDING_P (binding) = 0;
POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, true);
}
ok = true;
}
- /* Determine whether or not this binding is from a base class. */
- binding = IDENTIFIER_BINDING (name);
- set_inherited_value_binding_p (binding, decl);
-
POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, ok);
}