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/cse.c | |
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/cse.c')
-rw-r--r-- | gcc/cse.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -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; |