This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: cross from alpha to arm
- To: Richard Henderson <rth at cygnus dot com>
- Subject: Re: cross from alpha to arm
- From: Stephen Williams <steve at icarus dot icarus dot com>
- Date: Wed, 15 Oct 1997 11:35:27 +0800
- cc: egcs at cygnus dot com
On Wed, Oct 15, 1997 at 09:15:25AM +0800, Stephen Williams wrote:
> + #if HOST_BITS_PER_WIDE_INT > 32
> + if (i & 0xffffffff00000000LL) return FALSE;
> + #endif
rth@dot.cygnus.com said:
> Make this instead
> if (i & ~(unsigned HOST_WIDE_INT) 0xffffffff) return FALSE;
Even better! It tests out just fine. Thanks.
--
Steve Williams
steve@icarus.com
steve@picturel.com
"The woods are lovely, dark and deep. But I have promises to keep,
And lines to code before I sleep, And lines to code before I sleep."