From df0faff11b6b6122bdd5d877d89109d3d901df19 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Wed, 9 Oct 1996 13:42:42 -0700 Subject: [PATCH] (store_constructor): Delete unnecessary increment. From-SVN: r12940 --- gcc/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/expr.c b/gcc/expr.c index c065e76e7b9..8b22d630c91 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -3596,7 +3596,7 @@ store_constructor (exp, target, cleared) It is also needed to check for missing elements. */ for (elt = CONSTRUCTOR_ELTS (exp); elt != NULL_TREE; - elt = TREE_CHAIN (elt), i++) + elt = TREE_CHAIN (elt)) { tree index = TREE_PURPOSE (elt); HOST_WIDE_INT this_node_count; -- 2.30.2