From: Graham Stott Date: Sat, 17 Oct 1998 12:11:06 +0000 (-0600) Subject: * gcse.c (dump_cuid_table): Correct typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eb51666662345e5c95a7d3f474c76ea80666df23;p=gcc.git * gcse.c (dump_cuid_table): Correct typo. From-SVN: r23154 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dfdf0cb4a6b..3f75ab89b5b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sat Oct 17 13:09:09 1998 Graham + + * gcse.c (dump_cuid_table): Correct typo. + Sat Oct 17 11:02:47 1998 Nick Clifton * toplev.c (display_help): Prepend '-m' to target specific diff --git a/gcc/gcse.c b/gcc/gcse.c index cffb94e31f0..0fdf7655821 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -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));