This is the mail archive of the gcc-patches@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: [patch]: Add support of new __int128 type for targets having 128-bit integer scalar support


On 05/25/2010 05:44 PM, Kai Tietz wrote:
+__extension__ typedef __SIZE_TYPE__ ssize_t;

Why "ssize_t"? That looks to me like "signed size type", but __SIZE_TYPE__ is unsigned. You also don't need __extension__.


Also still need a mangling test in g++.dg/abi and a demangling test in libiberty/testsuite/demangle-expected.

Here the updated patch for __int128. It doesn't use for __int128
keyword the D_EXT any more. Not sure if this is that good, as it means
that the token __int128 is interpreted as keyword for
non-gnu-extension, but well.

That's the normal rule; keywords that start with __ are available in non-gnu-extension mode.


Jason


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