(store_constructor): Delete unnecessary increment.

From-SVN: r12940
This commit is contained in:
Jim Wilson 1996-10-09 13:42:42 -07:00
parent 80159a941c
commit df0faff11b

View File

@ -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;