I'm compiling a C++ program using GCC on 64bits - machine/OS/ (with -m64
option passed to g++
). As expected, sizeof(long double) == 16
– I'm wondering whether there is 16 bytes-long standard type for integers?
P.S. __int128_t
is an artificial extension that emulates standard type as I understood. Other than that I didn't find anything.