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: [tree-ssa] Computed gotos


Jamie Lokier wrote:
> > Do all GCC ports provide uintptr_t?  Nice loophole, btw.
> 
> No, but they all support "long" or "long long" which works in practice.

Sorry, I probably meant "yes", as in one of these two is a suitable
definition of uintptr_t on all GCC targets AFAIK:

	typedef unsigned long uintptr_t;
	typedef unsigned long long uintptr_t;

-- Jamie


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