Fix gcc bootstrap problem

Alan Modra amodra@bigpond.net.au
Mon Aug 20 10:17:00 GMT 2007


On Mon, Aug 20, 2007 at 09:25:09AM +0100, Nick Clifton wrote:
>     offset &= (bfd_vma)~((1L << s->alignment_power) - 1L);
> 
>   which I think should satisfy everyone.

Not me.  :-)  long might only be 32 bit and bfd_vma 64 bit.

    offset &= ~(((bfd_vma) 1 << s->alignment_power) - 1);

-- 
Alan Modra
Australia Development Lab, IBM



More information about the Binutils mailing list