From: Jason Merrill Date: Mon, 17 Aug 1998 16:29:17 +0000 (+0000) Subject: init.c (build_offset_ref): Don't mess with error_mark_node. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=287662c58d04ac37d8cd4730e377860abf1328df;p=gcc.git init.c (build_offset_ref): Don't mess with error_mark_node. * init.c (build_offset_ref): Don't mess with error_mark_node. * lex.c (do_scoped_id): Use cp_error. * rtti.c (get_tinfo_fn): Don't mess with the context for now. From-SVN: r21792 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 3f3fa49bf9b..1379f0741c2 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,10 @@ +1998-08-17 Jason Merrill + + * init.c (build_offset_ref): Don't mess with error_mark_node. + * lex.c (do_scoped_id): Use cp_error. + + * rtti.c (get_tinfo_fn): Don't mess with the context for now. + 1998-08-17 Benjamin Kosnik * decl.c (grokdeclarator): Allow anonymous types to be cv-qualified. diff --git a/gcc/cp/init.c b/gcc/cp/init.c index 78b6c5d8cba..9d1e05b88a8 100644 --- a/gcc/cp/init.c +++ b/gcc/cp/init.c @@ -1529,7 +1529,7 @@ build_offset_ref (type, name) if (TREE_CODE (type) == NAMESPACE_DECL) { t = lookup_namespace_name (type, name); - if (! type_unknown_p (t)) + if (t != error_mark_node && ! type_unknown_p (t)) { mark_used (t); t = convert_from_reference (t); diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index 32719659390..2aae5b9f89f 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -3048,8 +3048,7 @@ do_scoped_id (token, parsing) else { if (IDENTIFIER_NAMESPACE_VALUE (token) != error_mark_node) - error ("undeclared variable `%s' (first use here)", - IDENTIFIER_POINTER (token)); + cp_error ("`::%D' undeclared (first use here)", token); id = error_mark_node; /* Prevent repeated error messages. */ SET_IDENTIFIER_NAMESPACE_VALUE (token, error_mark_node); diff --git a/gcc/cp/rtti.c b/gcc/cp/rtti.c index a86d6ed3a78..0087bc39467 100644 --- a/gcc/cp/rtti.c +++ b/gcc/cp/rtti.c @@ -369,18 +369,6 @@ get_tinfo_fn (type) DECL_MUTABLE_P (d) = 1; TREE_TYPE (name) = copy_to_permanent (type); - /* We set DECL_CONTEXT for the benefit of backend stuff that wants to - know what type this artificial function is associated with. dllexport - handling, for instance. This is a kludge, and the - DECL_NO_STATIC_CHAIN bit is necessary to keep local classes from - breaking. The DECL_IGNORED_P bit keeps dwarf2 from breaking. */ - if (IS_AGGR_TYPE (type)) - { - DECL_CONTEXT (d) = type; - DECL_NO_STATIC_CHAIN (d) = 1; - DECL_IGNORED_P (d) = 1; - } - pushdecl_top_level (d); make_function_rtl (d); assemble_external (d);