Commit b7673cdb by Jeffrey A Law Committed by Jeff Law

* genextract.c (main): Fix typo.

From-SVN: r17904
parent 9e4767ca
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> Fri Feb 13 08:41:49 1998 Robert Lipe <robertl@dgii.com>
* c-lang.c (finish_file): Bracket declaration of static_ctors, * c-lang.c (finish_file): Bracket declaration of static_ctors,
......
...@@ -510,7 +510,7 @@ from the machine description file `md'. */\n\n"); ...@@ -510,7 +510,7 @@ from the machine description file `md'. */\n\n");
/* The vector in the insn says how many operands it has. /* The vector in the insn says how many operands it has.
And all it contains are operands. In fact, the vector was And all it contains are operands. In fact, the vector was
created just for the sake of this function. */ 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 (" ro[i] = XVECEXP (pat, 0, i);\n");
printf (" break;\n\n"); printf (" break;\n\n");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment