* gcse.c (dump_cuid_table): Correct typo.

From-SVN: r23154
This commit is contained in:
Graham Stott 1998-10-17 06:11:06 -06:00 committed by Jeff Law
parent f9d48c822a
commit eb51666662
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Sat Oct 17 13:09:09 1998 Graham <grahams@rcp.co.uk>
* gcse.c (dump_cuid_table): Correct typo.
Sat Oct 17 11:02:47 1998 Nick Clifton <nickc@cygnus.com> Sat Oct 17 11:02:47 1998 Nick Clifton <nickc@cygnus.com>
* toplev.c (display_help): Prepend '-m' to target specific * toplev.c (display_help): Prepend '-m' to target specific

View File

@ -927,13 +927,13 @@ void
dump_cuid_table (file) dump_cuid_table (file)
FILE *file; FILE *file;
{ {
int i,n; int i;
fprintf (file, "CUID table\n"); fprintf (file, "CUID table\n");
for (i = n = 0; i < max_cuid; i++) for (i = 0; i < max_cuid; i++)
{ {
rtx insn = CUID_INSN (i); rtx insn = CUID_INSN (i);
if (n != 0 && n % 10 == 0) if (i != 0 && i % 10 == 0)
fprintf (file, "\n"); fprintf (file, "\n");
if (insn != NULL) if (insn != NULL)
fprintf (file, " %d", INSN_UID (insn)); fprintf (file, " %d", INSN_UID (insn));