aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1992-01-06 22:17:18 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1992-01-06 22:17:18 -0500
commit4231508a998198d335b33c6c11a793c3d6c3bd2f (patch)
treecfe24781d0a353be65688ccfc557f1e01cdcd577 /gcc
parentcba998bf036fc6cce686e76d800e62d516e39f6b (diff)
downloadgcc-4231508a998198d335b33c6c11a793c3d6c3bd2f.zip
gcc-4231508a998198d335b33c6c11a793c3d6c3bd2f.tar.gz
gcc-4231508a998198d335b33c6c11a793c3d6c3bd2f.tar.bz2
*** empty log message ***
From-SVN: r167
Diffstat (limited to 'gcc')
-rw-r--r--gcc/genpeep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/genpeep.c b/gcc/genpeep.c
index 832196f..2609945 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);