Does Sun Studio 12 or a newer version support int128_t and uint128_t?
We're looking into supporting very large flag fields (> 2048 bits) and
a larger integer data type would help.

gcc on Linux seems to support at least this:

#include <stdlib.h>
#include <stdio.h>

int main()
{
        __int128_t x =1;
        
        printf ("%lld\n", (long long)x);
        
        return EXIT_SUCCESS;
}

printf() doesn't have to be supported, just the 128 integer data type.

Olga
-- 
      ,   _                                    _   ,
     { \/`o;====-    Olga Kryzhanovska   -====;o`\/ }
.----'-/`-/     [email protected]   \-`\-'----.
 `'-..-| /       http://twitter.com/fleyta     \ |-..-'`
      /\/\     Solaris/BSD//C/C++ programmer   /\/\
      `--`                                      `--`
_______________________________________________
tools-compilers mailing list
[email protected]

Reply via email to