Commit 96286722 by Richard Henderson Committed by Jeff Law

alias.c (memrefs_conflict_p): Treat arg_pointer_rtx just like stack_pointer_rtx.

        * alias.c (memrefs_conflict_p): Treat arg_pointer_rtx just
        like stack_pointer_rtx.

From-SVN: r16188
parent 361e618f
Sun Oct 26 11:52:01 1997 Richard Henderson <rth@cygnus.com>
* alias.c (memrefs_conflict_p): Treat arg_pointer_rtx just
like stack_pointer_rtx.
Sun Oct 26 11:32:16 1997 Manfred Hollstein <manfred@s-direktnet.de>
* Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
......
......@@ -622,7 +622,7 @@ memrefs_conflict_p (xsize, x, ysize, y, c)
}
if (y == frame_pointer_rtx || y == hard_frame_pointer_rtx
|| y == stack_pointer_rtx)
|| y == stack_pointer_rtx || y == arg_pointer_rtx)
{
rtx t = y;
int tsize = ysize;
......@@ -631,7 +631,7 @@ memrefs_conflict_p (xsize, x, ysize, y, c)
}
if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
|| x == stack_pointer_rtx)
|| x == stack_pointer_rtx || x == arg_pointer_rtx)
{
rtx y1;
......
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