public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* memrefs_conflict_p omission?
@ 1997-10-06  0:17 Richard Henderson
  1997-10-06  6:44 ` John Carr
  0 siblings, 1 reply; 5+ messages in thread
From: Richard Henderson @ 1997-10-06  0:17 UTC (permalink / raw)
  To: jfc; +Cc: egcs

Something that came to mind a bit ago while fixing AND nonsense,
was that perhaps this was an omission?


r~


--- alias.c     1997/09/29 06:21:18     1.8
+++ alias.c     1997/10/06 07:08:16
@@ -594,7 +594,7 @@ memrefs_conflict_p (xsize, x, ysize, y,
     }

   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;
@@ -603,7 +603,7 @@ memrefs_conflict_p (xsize, x, ysize, y,
     }

   if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
-      || x == stack_pointer_rtx)
+      || x == stack_pointer_rtx || x == arg_pointer_rtx)
     {
       rtx y1;



^ permalink raw reply	[flat|nested] 5+ messages in thread
* Re: memrefs_conflict_p omission?
@ 1997-10-08  4:25 meissner
  0 siblings, 0 replies; 5+ messages in thread
From: meissner @ 1997-10-08  4:25 UTC (permalink / raw)
  To: law, rth; +Cc: egcs, jfc

| Nope.  It is always either eliminated to FP/SP, or is FP.  With the
| exception of vax and we32k.  And vax doesn't change its AP, and I am
| assuming we32k works the same way.  It doesn't appear to move...

It couldn't very well point to the arguments on the stack if it moved.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~1997-10-08  4:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-10-06  0:17 memrefs_conflict_p omission? Richard Henderson
1997-10-06  6:44 ` John Carr
1997-10-07 23:14   ` Jeffrey A Law
1997-10-07 23:14     ` Richard Henderson
1997-10-08  4:25 meissner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).