re PR c++/13314 (ICE when omitting template parameter of a sub-class)
authorMark Mitchell <mark@codesourcery.com>
Sat, 6 Dec 2003 04:59:55 +0000 (04:59 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Sat, 6 Dec 2003 04:59:55 +0000 (04:59 +0000)
PR c++/13314
* emit-rtl.c (set_mem_attributes_minus_bitpos): Robustify.

PR c++/13314
* parser.c (cp_parser_class_specifier): Match push_scope/pop_scope
calls.
(cp_parser_class_head): Likewise.

PR c++/13314
* g++.dg/template/error7.C: New test.

From-SVN: r74359

gcc/ChangeLog
gcc/cp/ChangeLog
gcc/cp/parser.c
gcc/emit-rtl.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/template/error7.C [new file with mode: 0644]

index 9649c837e3feaf68eb5d958df9f78f30d148a898..9cd85d751b6bf27b438f4996fbe4045b1b93a2ee 100644 (file)
@@ -1,3 +1,8 @@
+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
index 6e2239bbf0b767d6a3d85c368edc0c494c062c0b..39dd385d2a6a124b55e4932c20a1bd81aa097671 100644 (file)
@@ -1,3 +1,10 @@
+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
index 5f1b4736b0189aca4bc239754dc075213b5e12a3..97d32834d6a1f5bdddb9d90584dac06f7dd96d8a 100644 (file)
@@ -11447,6 +11447,8 @@ cp_parser_class_specifier (cp_parser* parser)
   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.  */
@@ -11737,7 +11739,7 @@ cp_parser_class_head (cp_parser* parser,
      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;
@@ -11836,7 +11838,10 @@ cp_parser_class_head (cp_parser* parser,
        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'.  */
index 0f7e677e3efd063a02c16a838d430aa9cd8af974..8be71ae64fb8d7cf909ae469800d67dc790c0208 100644 (file)
@@ -1826,6 +1826,8 @@ set_mem_attributes_minus_bitpos (rtx ref, tree t, int objectp,
     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
index 2000b1c5fb5556ae3e5b04035c06cadd0b1c4ed3..aba0ad31fdb05d1453760c9281f931871f6fc331 100644 (file)
@@ -1,3 +1,8 @@
+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>
 
diff --git a/gcc/testsuite/g++.dg/template/error7.C b/gcc/testsuite/g++.dg/template/error7.C
new file mode 100644 (file)
index 0000000..3c1a0e1
--- /dev/null
@@ -0,0 +1,6 @@
+// PR c++/13314
+// { dg-options "-O2" }
+
+struct A { template <int> struct B; };
+struct A::B {}; // { dg-error "" }
+A::B<0> b; // { dg-error "" }