re PR c++/28879 (ICE with VLA in template function)
authorJakub Jelinek <jakub@redhat.com>
Tue, 20 Nov 2007 06:38:48 +0000 (07:38 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 20 Nov 2007 06:38:48 +0000 (07:38 +0100)
PR c++/28879
* tree.c (build_cplus_array_type_1): Don't pass any VLA types
when processing_template_decl to build_array_type.

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

From-SVN: r130309

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

index d8e95c6..b7c7661 100644 (file)
@@ -1,5 +1,9 @@
 2007-11-20  Jakub Jelinek  <jakub@redhat.com>
 
+       PR c++/28879
+       * tree.c (build_cplus_array_type_1): Don't pass any VLA types
+       when processing_template_decl to build_array_type.
+
        PR c++/33962
        * pt.c (more_specialized_fn): Don't segfault if one or
        both argument list end with ellipsis.
index 2a7cd3a..252195d 100644 (file)
@@ -529,9 +529,9 @@ build_cplus_array_type_1 (tree elt_type, tree index_type)
   if (elt_type == error_mark_node || index_type == error_mark_node)
     return error_mark_node;
 
-  if (dependent_type_p (elt_type)
-      || (index_type
-         && value_dependent_expression_p (TYPE_MAX_VALUE (index_type))))
+  if (processing_template_decl
+      && (dependent_type_p (elt_type)
+         || (index_type && !TREE_CONSTANT (TYPE_MAX_VALUE (index_type)))))
     {
       void **e;
       cplus_array_info cai;
@@ -570,7 +570,7 @@ build_cplus_array_type_1 (tree elt_type, tree index_type)
            TYPE_CANONICAL (t)
                = build_cplus_array_type 
                   (TYPE_CANONICAL (elt_type),
-                   index_type? TYPE_CANONICAL (index_type) : index_type);
+                   index_type ? TYPE_CANONICAL (index_type) : index_type);
          else
            TYPE_CANONICAL (t) = t;
        }
index 585c720..cd4b067 100644 (file)
@@ -1,5 +1,8 @@
 2007-11-20  Jakub Jelinek  <jakub@redhat.com>
 
+       PR c++/28879
+       * g++.dg/template/vla2.C: New test.
+
        PR c++/33962
        * g++.dg/overload/template3.C: New test.
 
diff --git a/gcc/testsuite/g++.dg/template/vla2.C b/gcc/testsuite/g++.dg/template/vla2.C
new file mode 100644 (file)
index 0000000..183f8fa
--- /dev/null
@@ -0,0 +1,20 @@
+// PR c++/28879
+// { dg-do compile }
+// { dg-options "" }
+
+struct A
+{
+  static int i;
+  int j;
+};
+
+template<int> void foo ()
+{
+  int x[A::i];
+//int y[A().j];
+}
+
+void bar ()
+{
+  foo<6> ();
+}