This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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: [RFA] Fix two tc-pdp11 internal errors


On Fri, Jan 14, 2011 at 12:33:22PM -0500, Paul Koning wrote:
> +    case 8:
> +      con[0] = (value >> 48) & 0xff;
> +      con[1] = (value >> 56) & 0xff;
> +      con[2] = (value >> 32) & 0xff;
> +      con[3] = (value >> 40) & 0xff;
> +      con[4] = (value >> 16) & 0xff;
> +      con[5] = (value >> 24) & 0xff;
> +      con[6] =  value        & 0xff;
> +      con[7] = (value >>  8) & 0xff;
> +      break;

I think this will break the build on a 32-bit host (ie. when bfd_vma
is 32-bit).

-- 
Alan Modra
Australia Development Lab, IBM


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