diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 859f9799a92..16e5f275e59 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2004-01-13 Giovanni Bajo + + PR c++/13474 + * pt.c (tsubst) : Remove obsolete array index tweaking. + 2003-01-12 Steven Bosscher PR c++/13558 diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 81dd711e033..cf73ea1f016 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -6566,23 +6566,6 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl) if (!processing_template_decl) max = decl_constant_value (max); - if (processing_template_decl - /* When providing explicit arguments to a template - function, but leaving some arguments for subsequent - deduction, MAX may be template-dependent even if we're - not PROCESSING_TEMPLATE_DECL. We still need to check for - template parms, though; MAX won't be an INTEGER_CST for - dynamic arrays, either. */ - || (TREE_CODE (max) != INTEGER_CST - && uses_template_parms (max))) - { - tree itype = make_node (INTEGER_TYPE); - TYPE_MIN_VALUE (itype) = size_zero_node; - TYPE_MAX_VALUE (itype) = build_min (MINUS_EXPR, sizetype, max, - integer_one_node); - return itype; - } - if (integer_zerop (omax)) { /* Still allow an explicit array of size zero. */