diff options
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/cse.c | 6 |
2 files changed, 3 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1de8bac..dbcc8ca 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -24,6 +24,9 @@ Mon Oct 18 02:38:46 1999 Bernd Schmidt <bernds@cygnus.co.uk> Mon Oct 18 01:41:35 1999 Jeffrey A Law (law@cygnus.com) + * cse.c (invalidate_for_call): Do not remove memory references from + the table here. It's handled elsewhere. + * haifa-sched.c (add_dependence): Protect references to the true dependency cache with #ifdef INSN_SCHEDULING. (remove_dependence): Similarly. @@ -2009,12 +2009,6 @@ invalidate_for_call () { next = p->next_same_hash; - if (p->in_memory) - { - remove_from_table (p, hash); - continue; - } - if (GET_CODE (p->exp) != REG || REGNO (p->exp) >= FIRST_PSEUDO_REGISTER) continue; |