From: Richard Kenner Date: Tue, 7 Jan 1992 03:17:18 +0000 (-0500) Subject: *** empty log message *** X-Git-Tag: misc/cutover-egcs-0~13764 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4231508a998198d335b33c6c11a793c3d6c3bd2f;p=thirdparty%2Fgcc.git *** empty log message *** From-SVN: r167 --- diff --git a/gcc/genpeep.c b/gcc/genpeep.c index 832196f90552..26099458abb8 100644 --- a/gcc/genpeep.c +++ b/gcc/genpeep.c @@ -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);