* gcse.c (dump_cuid_table): Correct typo.
authorGraham Stott <grahams@rcp.co.uk>
Sat, 17 Oct 1998 12:11:06 +0000 (06:11 -0600)
committerJeff Law <law@gcc.gnu.org>
Sat, 17 Oct 1998 12:11:06 +0000 (06:11 -0600)
From-SVN: r23154

gcc/ChangeLog
gcc/gcse.c

index dfdf0cb4a6b9b8d6c80dec01e706da5337638a16..3f75ab89b5b22e6883a3866097d8f346af5b7610 100644 (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>
 
        * toplev.c (display_help): Prepend '-m' to target specific
index cffb94e31f0e95c011fe241f4450bdbe13ecfdfd..0fdf7655821a9f2089b4390e22f1400990f6f4c5 100644 (file)
@@ -927,13 +927,13 @@ void
 dump_cuid_table (file)
      FILE *file;
 {
-  int i,n;
+  int i;
 
   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);
-      if (n != 0 && n % 10 == 0)
+      if (i != 0 && i % 10 == 0)
        fprintf (file, "\n");
       if (insn != NULL)
        fprintf (file, " %d", INSN_UID (insn));