* gcse.c (dump_hash_table): Really fix error in last change.

From-SVN: r32306
This commit is contained in:
Jason Merrill 2000-03-03 03:28:43 -05:00
parent cdd9eb8f0f
commit a0ac9e5a4a
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2000-03-03 Jason Merrill <jason@casey.cygnus.com>
* gcse.c (dump_hash_table): Really fix error in last change.
2000-03-02 Denis Chertykov <denisc@overta.ru>
* avr.c (print_operand): Use print_operand_address instead of
@ -14,8 +18,7 @@
2000-03-02 Clinton Popetz <cpopetz@cygnus.com>
* config/i386/i386.c: (constant_call_address_operand): Reject
CONST_INT.
* i386.c: (constant_call_address_operand): Reject CONST_INT.
2000-03-02 Jason Merrill <jason@casey.cygnus.com>

View File

@ -2011,9 +2011,10 @@ dump_hash_table (file, name, table, table_size, total_size)
for (i = 0; i < total_size; i++)
if (flat_table[i] != 0)
{
expr = flat_table[i];
fprintf (file, "Index %d (hash value %d)\n ",
expr->bitmap_index, hash_val[i]);
print_rtl (file, flat_table[i]->expr);
print_rtl (file, expr->expr);
fprintf (file, "\n");
}