diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 1d61141af04..15947ba7a3b 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2003-12-30 Nathan Sidwell + + PR c++/13494 + * tree.c (build_cplus_array_type_1): Only build a minimal array + type for dependent types or domains. + 2003-12-29 Nathan Sidwell PR c++/12774 diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c index 426c3d7c9ed..bedbbe96b44 100644 --- a/gcc/cp/tree.c +++ b/gcc/cp/tree.c @@ -363,14 +363,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; - /* Don't do the minimal thing just because processing_template_decl is - set; we want to give string constants the right type immediately, so - we don't have to fix them up at instantiation time. */ - if ((processing_template_decl - && index_type && TYPE_MAX_VALUE (index_type) - && TREE_CODE (TYPE_MAX_VALUE (index_type)) != INTEGER_CST) - || uses_template_parms (elt_type) - || (index_type && uses_template_parms (index_type))) + if (dependent_type_p (elt_type) + || (index_type + && value_dependent_expression_p (TYPE_MAX_VALUE (index_type)))) { t = make_node (ARRAY_TYPE); TREE_TYPE (t) = elt_type; diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 879d4ee88ca..992e6f4345a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2003-12-30 Nathan Sidwell + + PR c++/13494 + * g++.dg/template/array2-1.C: New test. + * g++.dg/template/array2-2.C: New test. + 2003-12-29 Mark Mitchell * g++.old-deja/g++.pt/static11.C: Correct XFAIL syntax. diff --git a/gcc/testsuite/g++.dg/template/array2-1.C b/gcc/testsuite/g++.dg/template/array2-1.C new file mode 100644 index 00000000000..2980a1fd186 --- /dev/null +++ b/gcc/testsuite/g++.dg/template/array2-1.C @@ -0,0 +1,14 @@ +// { dg-do compile } +// { dg-options "-fabi-version=1" } + +// Copyright (C) 2003 Free Software Foundation, Inc. +// Contributed by Nathan Sidwell 29 Dec 2003 + +// PR c++/13494. ICE + +template +int foo(int d[][4]) +{ + return d[0][0]; +} + diff --git a/gcc/testsuite/g++.dg/template/array2-2.C b/gcc/testsuite/g++.dg/template/array2-2.C new file mode 100644 index 00000000000..dd3e7f0e265 --- /dev/null +++ b/gcc/testsuite/g++.dg/template/array2-2.C @@ -0,0 +1,14 @@ +// { dg-do compile } +// { dg-options "-fabi-version=2" } + +// Copyright (C) 2003 Free Software Foundation, Inc. +// Contributed by Nathan Sidwell 29 Dec 2003 + +// PR c++/13494. ICE + +template +int foo(int d[][4]) +{ + return d[0][0]; +} +