(store_constructor): Delete unnecessary increment.
authorJim Wilson <wilson@gcc.gnu.org>
Wed, 9 Oct 1996 20:42:42 +0000 (13:42 -0700)
committerJim Wilson <wilson@gcc.gnu.org>
Wed, 9 Oct 1996 20:42:42 +0000 (13:42 -0700)
From-SVN: r12940

gcc/expr.c

index c065e76e7b985ee2220edcf0eae7469077403ee4..8b22d630c913a8068c0b5e01417d4112928608cd 100644 (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;