* genextract.c (main): Fix typo.

From-SVN: r17904
This commit is contained in:
Jeffrey A Law 1998-02-13 11:17:14 +00:00 committed by Jeff Law
parent 9e4767cadf
commit b7673cdb66
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri Feb 13 12:18:40 1998 Jeffrey A Law (law@cygnus.com)
* genextract.c (main): Fix typo.
Fri Feb 13 08:41:49 1998 Robert Lipe <robertl@dgii.com>
* c-lang.c (finish_file): Bracket declaration of static_ctors,

View File

@ -510,7 +510,7 @@ from the machine description file `md'. */\n\n");
/* The vector in the insn says how many operands it has.
And all it contains are operands. In fact, the vector was
created just for the sake of this function. */
printf (" for (i = XVECLEN (pat, 0); i >= 0; i--)\n");
printf (" for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)\n");
printf (" ro[i] = XVECEXP (pat, 0, i);\n");
printf (" break;\n\n");
}