diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-10-23 17:52:09 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-10-23 17:52:09 +0000 |
commit | 519fc96c475680de2cc49e7811dbbfadb912cbcc (patch) | |
tree | 310ca684459b7e9ae13c9a3b9abf308b3a634afe /include/clang/Basic/StmtNodes.td | |
parent | 2298981669bf3bd63335a4be179bc0f96823a8f4 (diff) |
Notes
Diffstat (limited to 'include/clang/Basic/StmtNodes.td')
-rw-r--r-- | include/clang/Basic/StmtNodes.td | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/clang/Basic/StmtNodes.td b/include/clang/Basic/StmtNodes.td index be364de1a76cf..59444b2919a95 100644 --- a/include/clang/Basic/StmtNodes.td +++ b/include/clang/Basic/StmtNodes.td @@ -114,6 +114,7 @@ def GNUNullExpr : DStmt<Expr>; // C++ Expressions. def CXXOperatorCallExpr : DStmt<CallExpr>; def CXXMemberCallExpr : DStmt<CallExpr>; +def CXXRewrittenBinaryOperator : DStmt<Expr>; def CXXNamedCastExpr : DStmt<ExplicitCastExpr, 1>; def CXXStaticCastExpr : DStmt<CXXNamedCastExpr>; def CXXDynamicCastExpr : DStmt<CXXNamedCastExpr>; @@ -163,6 +164,9 @@ def CoawaitExpr : DStmt<CoroutineSuspendExpr>; def DependentCoawaitExpr : DStmt<Expr>; def CoyieldExpr : DStmt<CoroutineSuspendExpr>; +// C++2a Concepts expressions +def ConceptSpecializationExpr : DStmt<Expr>; + // Obj-C Expressions. def ObjCStringLiteral : DStmt<Expr>; def ObjCBoxedExpr : DStmt<Expr>; @@ -242,6 +246,9 @@ def OMPCancellationPointDirective : DStmt<OMPExecutableDirective>; def OMPCancelDirective : DStmt<OMPExecutableDirective>; def OMPTaskLoopDirective : DStmt<OMPLoopDirective>; def OMPTaskLoopSimdDirective : DStmt<OMPLoopDirective>; +def OMPMasterTaskLoopDirective : DStmt<OMPLoopDirective>; +def OMPMasterTaskLoopSimdDirective : DStmt<OMPLoopDirective>; +def OMPParallelMasterTaskLoopDirective : DStmt<OMPLoopDirective>; def OMPDistributeDirective : DStmt<OMPLoopDirective>; def OMPDistributeParallelForDirective : DStmt<OMPLoopDirective>; def OMPDistributeParallelForSimdDirective : DStmt<OMPLoopDirective>; |