OSDN Git Service

PR c++/11513
authorlerdsuwa <lerdsuwa@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Jul 2003 11:56:33 +0000 (11:56 +0000)
committerlerdsuwa <lerdsuwa@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Jul 2003 11:56:33 +0000 (11:56 +0000)
* cp-tree.h (PROCESSING_REAL_TEMPLATE_DECL_P): Use current_scope.

* g++.dg/template/crash8.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69739 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/cp-tree.h
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/template/crash8.C [new file with mode: 0644]

index 3314b35..337b372 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-24  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
+
+       PR c++/11513
+       * cp-tree.h (PROCESSING_REAL_TEMPLATE_DECL_P): Use current_scope.
+
 2003-07-23  Mark Mitchell  <mark@codesourcery.com>
 
        PR c++/11645
index 15bcea0..8e3fcf7 100644 (file)
@@ -2838,7 +2838,7 @@ struct lang_decl GTY(())
    entity with its own template parameter list, and which is not a
    full specialization.  */
 #define PROCESSING_REAL_TEMPLATE_DECL_P() \
-  (processing_template_decl > template_class_depth (current_class_type))
+  (processing_template_decl > template_class_depth (current_scope ()))
 
 /* Nonzero if this VAR_DECL or FUNCTION_DECL has already been
    instantiated, i.e. its definition has been generated from the
index 4881e5a..a362729 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-24  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
+
+       PR c++/11513
+       * g++.dg/template/crash8.C: New test.
+
 2003-07-23  Steven Bosscher <steven@gcc.gnu.org>
 
        PR c/10602
diff --git a/gcc/testsuite/g++.dg/template/crash8.C b/gcc/testsuite/g++.dg/template/crash8.C
new file mode 100644 (file)
index 0000000..a6f26b3
--- /dev/null
@@ -0,0 +1,20 @@
+// { dg-do compile }
+
+// Origin: David Robinson <drtr@dial.pipex.com>
+
+// PR c++/11513: ICE due to incorrect decision whether the tag is template.
+
+template <typename T>
+struct bar
+{ 
+  struct foo
+  {
+    int a;
+  };
+
+  template <typename U>
+  int wom(U c)
+  {
+    struct foo b;
+  }
+};