OSDN Git Service

* cse.c (invalidate_for_call): Do not remove memory references from
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Oct 1999 23:05:03 +0000 (23:05 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Oct 1999 23:05:03 +0000 (23:05 +0000)
        the table here.  It's handled elsewhere.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30076 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cse.c

index 1de8bac..dbcc8ca 100644 (file)
@@ -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.
index 3993f5e..edb4678 100644 (file)
--- 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;