This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: 2.95.3 update


On Sun, 11 Mar 2001, Thorsten Kukuk wrote:

> glibc builds and "make check" now succeeds. Looks like everything else
> is working, too.

Good - Franz Sirl has run tests on ppc and found no problems either. I've
committed this to the branch.


Bernd

	* final.c (alter_subreg): Use plus_constant_for_output to match
	what offsettable_address_p does.

Index: final.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/final.c,v
retrieving revision 1.77.4.1
diff -u -p -r1.77.4.1 final.c
--- final.c	1999/06/21 23:21:23	1.77.4.1
+++ final.c	2001/03/12 11:54:43
@@ -3103,7 +3103,7 @@ alter_subreg (x)
       PUT_CODE (x, MEM);
       MEM_COPY_ATTRIBUTES (x, y);
       MEM_ALIAS_SET (x) = MEM_ALIAS_SET (y);
-      XEXP (x, 0) = plus_constant (XEXP (y, 0), offset);
+      XEXP (x, 0) = plus_constant_for_output (XEXP (y, 0), offset);
     }

   return x;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]