(refers_to_mem_p): Use rtx_equal_p to see if bases are equal.

From-SVN: r3719
This commit is contained in:
Richard Kenner 1993-03-12 17:43:28 -05:00
parent 6500fb4361
commit 7b0d7bd0c9
1 changed files with 1 additions and 1 deletions

View File

@ -2307,7 +2307,7 @@ refers_to_mem_p (x, base, start, end)
/* refers_to_mem_p is never called with varying addresses.
If the base addresses are not equal, there is no chance
of the memory addresses conflicting. */
if (mybase != base)
if (! rtx_equal_p (mybase, base))
return 0;
return myend > start && mystart < end;