Re: GCC screws up pointer->ulong conversion on 32 bit systems
On Nov 19, 2013 6:35 AM, "Kagamin" wrote: > > C first sign-extends then converts to unsigned. It's just weird it treats pointer as signed. Was there an option for it? No, it's a bug. The comment in the code says that it unsign-extends (if that is even a proper word a to describe it) first before
Re: GCC screws up pointer->ulong conversion on 32 bit systems
C first sign-extends then converts to unsigned. It's just weird it treats pointer as signed. Was there an option for it?