aboutsummaryrefslogtreecommitdiff
path: root/gcc/cse.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-10-18 23:05:03 +0000
committerJeff Law <law@gcc.gnu.org>1999-10-18 17:05:03 -0600
commitb61a6c8113b3a47fcebcf366c1d5221ceda2ba1a (patch)
treeae96ddbc3c6374e856244fadf4a47b96954ad303 /gcc/cse.c
parent4b84737d47b7e97e11d85c13bdeb861c896a5a6a (diff)
downloadgcc-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.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/cse.c b/gcc/cse.c
index 3993f5e..edb4678 100644
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -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;