diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-03 08:28:43 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-03 08:28:43 +0000 |
commit | b16f1e6c94664c30eb3f86a8a17d4e279948e6eb (patch) | |
tree | e074b9e7861dc7eba36e77d44e6a0f37908eb4ba | |
parent | 1ae5b9689b7130191578dc8401f41e9779310822 (diff) | |
download | ppe42-gcc-b16f1e6c94664c30eb3f86a8a17d4e279948e6eb.tar.gz ppe42-gcc-b16f1e6c94664c30eb3f86a8a17d4e279948e6eb.zip |
* gcse.c (dump_hash_table): Really fix error in last change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32306 138bc75d-0d04-0410-961f-82ee72b054a4
-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 52c3aa6e637..d229e83a51e 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> diff --git a/gcc/gcse.c b/gcc/gcse.c index 1ac98296e4f..be182143a0c 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -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"); } |