* gcse.c (dump_cuid_table): Correct typo.
From-SVN: r23154
This commit is contained in:
parent
f9d48c822a
commit
eb51666662
@ -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
|
||||
|
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user