This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: 128 bits integers
- From: Ian Lance Taylor <ian at airs dot com>
- To: AndrÃs DomÃngue z <andresdju at gmail dot com>
- Cc: gcc-help at gcc dot gnu dot org
- Date: 23 Jul 2005 20:46:00 -0700
- Subject: Re: 128 bits integers
- References: <64399b1705072311242bab7686@mail.gmail.com>
AndrÃs DomÃnguez <andresdju@gmail.com> writes:
> How can I use 128 bits integers in C language with gcc on AMD64?
> What is __int128? I have tried __int128 but doesn't work.
It's hardly elegant, and there may be a better solution, but this will
work:
typedef int bigint_t __attribute__ ((__mode__ (__TI__)));
Ian