*** empty log message ***
authorRichard Kenner <kenner@gcc.gnu.org>
Tue, 7 Jan 1992 03:17:18 +0000 (22:17 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Tue, 7 Jan 1992 03:17:18 +0000 (22:17 -0500)
From-SVN: r167

gcc/genpeep.c

index 832196f905526f12cf704d8f048e2b7fbaf88f08..26099458abb804e575936d40271a1b87b46be07f 100644 (file)
@@ -291,7 +291,7 @@ match_rtx (x, path, fail_label)
          int j;
          printf ("  if (XVECLEN (x, %d) != %d) goto L%d;\n",
                  i, XVECLEN (x, i), fail_label);
-         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
+         for (j = 0; j < XVECLEN (x, i); j++)
            {
              link.vecelt = j;
              match_rtx (XVECEXP (x, i, j), &link, fail_label);