From 4231508a998198d335b33c6c11a793c3d6c3bd2f Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 6 Jan 1992 22:17:18 -0500 Subject: [PATCH] *** empty log message *** From-SVN: r167 --- gcc/genpeep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3