diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-30 02:43:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-30 02:43:43 +0000 |
commit | 2df9ced9fd1e8c7d7b38443db07e0e811de22571 (patch) | |
tree | c5cb423c1cc8fe563f15be09e5a3e6612763b643 /include/clang/Frontend/PCHBitCodes.h | |
parent | 5532180ae3fa5b3bfa0b2177f08c94075641e8bb (diff) |
initial support for __[u]int128_t, which should be basically
compatible with VC++ and GCC. The codegen/mangling angle hasn't
been fully ironed out yet. Note that we accept int128_t even in
32-bit mode, unlike gcc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70464 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PCHBitCodes.h')
-rw-r--r-- | include/clang/Frontend/PCHBitCodes.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/clang/Frontend/PCHBitCodes.h b/include/clang/Frontend/PCHBitCodes.h index a4da704386..bb5c91b8e0 100644 --- a/include/clang/Frontend/PCHBitCodes.h +++ b/include/clang/Frontend/PCHBitCodes.h @@ -315,7 +315,11 @@ namespace clang { /// \brief The placeholder type for overloaded function sets. PREDEF_TYPE_OVERLOAD_ID = 19, /// \brief The placeholder type for dependent types. - PREDEF_TYPE_DEPENDENT_ID = 20 + PREDEF_TYPE_DEPENDENT_ID = 20, + /// \brief The '__uint128_t' type. + PREDEF_TYPE_UINT128_ID = 21, + /// \brief The '__int128_t' type. + PREDEF_TYPE_INT128_ID = 22 }; /// \brief The number of predefined type IDs that are reserved for |