Commit b61a6c81 by Jeffrey A Law Committed by Jeff Law

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
parent 4b84737d
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment