+2003-12-05 Mark Mitchell <mark@codesourcery.com>
+
+ PR c++/13314
+ * emit-rtl.c (set_mem_attributes_minus_bitpos): Robustify.
+
2003-12-05 Andrew Pinski <pinskia@physics.uc.edu>
PR driver/13211
+2003-12-05 Mark Mitchell <mark@codesourcery.com>
+
+ PR c++/13314
+ * parser.c (cp_parser_class_specifier): Match push_scope/pop_scope
+ calls.
+ (cp_parser_class_head): Likewise.
+
2003-12-05 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
PR c++/13166
parser->num_template_parameter_lists = 0;
/* Start the class. */
+ if (nested_name_specifier_p)
+ push_scope (CP_DECL_CONTEXT (TYPE_MAIN_DECL (type)));
type = begin_class_definition (type);
if (type == error_mark_node)
/* If the type is erroneous, skip the entire body of the class. */
it is not, try to recover gracefully. */
if (at_namespace_scope_p ()
&& parser->num_template_parameter_lists == 0
- && num_templates == 1)
+ && template_id_p)
{
error ("an explicit specialization must be preceded by 'template <>'");
invalid_explicit_specialization_p = true;
type = push_template_decl (type);
type = TREE_TYPE (type);
if (nested_name_specifier)
- *nested_name_specifier_p = true;
+ {
+ *nested_name_specifier_p = true;
+ pop_scope (nested_name_specifier);
+ }
}
/* Indicate whether this class was declared as a `class' or as a
`struct'. */
return;
type = TYPE_P (t) ? t : TREE_TYPE (t);
+ if (type == error_mark_node)
+ return;
/* If we have already set DECL_RTL = ref, get_alias_set will get the
wrong answer, as it assumes that DECL_RTL already has the right alias
+2003-12-05 Mark Mitchell <mark@codesourcery.com>
+
+ PR c++/13314
+ * g++.dg/template/error7.C: New test.
+
2003-12-05 Stuart Menefy <stuart.menefy@st.com>
J"orn Rennecke <joern.rennecke@superh.com>