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]

Oops: patch to last patch


I had a minor error in it.  This patches the patch:

Index: expr.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/expr.c,v
retrieving revision 1.285
diff -c -2 -p -r1.285 expr.c
*** expr.c	2001/01/02 16:40:35	1.285
--- expr.c	2001/01/02 16:45:01
*************** store_constructor_field (target, bitsize
*** 4343,4347 ****
        /* Show the alignment may no longer be what it was and update the alias
  	 set, if required.  */
!       align = MIN (align, bitpos & - bitpos);
        if (GET_CODE (target) == MEM)
  	MEM_ALIAS_SET (target) = alias_set;
--- 4343,4348 ----
        /* Show the alignment may no longer be what it was and update the alias
  	 set, if required.  */
!       if (bitpos != 0)
! 	align = MIN (align, bitpos & - bitpos);
        if (GET_CODE (target) == MEM)
  	MEM_ALIAS_SET (target) = alias_set;

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