This is the mail archive of the gcc@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]
Other format: [Raw text]

RE: A bug on 32-bit host?


Oops, that is embarassing. Usually any local change are marked with
#ifdef in our port.  I shoud double check next time when I report an issue. Thanks.

Bingfeng

> -----Original Message-----
> From: Ian Lance Taylor [mailto:iant@google.com] 
> Sent: 22 January 2010 15:04
> To: Bingfeng Mei
> Cc: gcc@gcc.gnu.org
> Subject: Re: A bug on 32-bit host?
> 
> "Bingfeng Mei" <bmei@broadcom.com> writes:
> 
> >       /* Obtain value by shifting and set zeros for remaining part*/
> >       if((bitpos + bitsize) > HOST_BITS_PER_WIDE_INT)
> >         high =  (v >> (HOST_BITS_PER_WIDE_INT - bitpos)) 
> >                 & ((1 << (bitpos + bitsize - 
> HOST_BITS_PER_WIDE_INT)) - 1);
> 
> That is not what expmed.c looks like on mainline or on gcc 4.4 branch.
> You must have a local change.
> 
> Ian
> 
> 


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