Commit a0ac9e5a by Jason Merrill

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

From-SVN: r32306
parent cdd9eb8f
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> 2000-03-02 Denis Chertykov <denisc@overta.ru>
* avr.c (print_operand): Use print_operand_address instead of * avr.c (print_operand): Use print_operand_address instead of
...@@ -14,8 +18,7 @@ ...@@ -14,8 +18,7 @@
2000-03-02 Clinton Popetz <cpopetz@cygnus.com> 2000-03-02 Clinton Popetz <cpopetz@cygnus.com>
* config/i386/i386.c: (constant_call_address_operand): Reject * i386.c: (constant_call_address_operand): Reject CONST_INT.
CONST_INT.
2000-03-02 Jason Merrill <jason@casey.cygnus.com> 2000-03-02 Jason Merrill <jason@casey.cygnus.com>
......
...@@ -2011,9 +2011,10 @@ dump_hash_table (file, name, table, table_size, total_size) ...@@ -2011,9 +2011,10 @@ dump_hash_table (file, name, table, table_size, total_size)
for (i = 0; i < total_size; i++) for (i = 0; i < total_size; i++)
if (flat_table[i] != 0) if (flat_table[i] != 0)
{ {
expr = flat_table[i];
fprintf (file, "Index %d (hash value %d)\n ", fprintf (file, "Index %d (hash value %d)\n ",
expr->bitmap_index, hash_val[i]); expr->bitmap_index, hash_val[i]);
print_rtl (file, flat_table[i]->expr); print_rtl (file, expr->expr);
fprintf (file, "\n"); fprintf (file, "\n");
} }
......
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