diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2000-03-03 03:28:43 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2000-03-03 03:28:43 -0500 |
commit | a0ac9e5a4a1b52504ce258f82cd91093f5cefaa0 (patch) | |
tree | e074b9e7861dc7eba36e77d44e6a0f37908eb4ba | |
parent | cdd9eb8f0f7ece59d56b583c51df0ea68be63a26 (diff) | |
download | gcc-a0ac9e5a4a1b52504ce258f82cd91093f5cefaa0.zip gcc-a0ac9e5a4a1b52504ce258f82cd91093f5cefaa0.tar.gz gcc-a0ac9e5a4a1b52504ce258f82cd91093f5cefaa0.tar.bz2 |
* gcse.c (dump_hash_table): Really fix error in last change.
From-SVN: r32306
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/gcse.c | 3 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 52c3aa6..d229e83 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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> @@ -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"); } |