diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-10-18 23:05:03 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-10-18 17:05:03 -0600 |
commit | b61a6c8113b3a47fcebcf366c1d5221ceda2ba1a (patch) | |
tree | ae96ddbc3c6374e856244fadf4a47b96954ad303 /gcc | |
parent | 4b84737d47b7e97e11d85c13bdeb861c896a5a6a (diff) | |
download | gcc-b61a6c8113b3a47fcebcf366c1d5221ceda2ba1a.zip gcc-b61a6c8113b3a47fcebcf366c1d5221ceda2ba1a.tar.gz gcc-b61a6c8113b3a47fcebcf366c1d5221ceda2ba1a.tar.bz2 |
cse.c (invalidate_for_call): Do not remove memory references from the table here.
* cse.c (invalidate_for_call): Do not remove memory references from
the table here. It's handled elsewhere.
From-SVN: r30076
Diffstat (limited to 'gcc')
-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; |