Commit eb516666 by Graham Stott Committed by Jeff Law

* gcse.c (dump_cuid_table): Correct typo.

From-SVN: r23154
parent f9d48c82
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
......
...@@ -927,13 +927,13 @@ void ...@@ -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));
......
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