diff options
author | John McCall <rjmccall@apple.com> | 2010-11-15 23:31:06 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-11-15 23:31:06 +0000 |
commit | 7cd7d1ad33fdf49eef83942e8855fe20d95aa1b9 (patch) | |
tree | 18f8b8e34a07fdd95ee800590066d7990f6601da /include/clang/Serialization/ASTBitCodes.h | |
parent | d776c46691e8046b87e5db7e33f3a27dc9aae5d6 (diff) |
Add a new expression kind, OpaqueValueExpr, which is useful for
certain internal type-checking procedures as well as for representing
certain implicitly-generated operations. Uses to follow.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@119289 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index 38b87ed47c..646d09006a 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -922,7 +922,9 @@ namespace clang { EXPR_CXX_UNRESOLVED_LOOKUP, // UnresolvedLookupExpr EXPR_CXX_UNARY_TYPE_TRAIT, // UnaryTypeTraitExpr - EXPR_CXX_NOEXCEPT // CXXNoexceptExpr + EXPR_CXX_NOEXCEPT, // CXXNoexceptExpr + + EXPR_OPAQUE_VALUE // OpaqueValueExpr }; /// \brief The kinds of designators that can occur in a |