diff options
Diffstat (limited to 'include/clang/Basic/StmtNodes.td')
-rw-r--r-- | include/clang/Basic/StmtNodes.td | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/clang/Basic/StmtNodes.td b/include/clang/Basic/StmtNodes.td index 973b3bb6fd17..d8eed553d86e 100644 --- a/include/clang/Basic/StmtNodes.td +++ b/include/clang/Basic/StmtNodes.td @@ -85,6 +85,8 @@ def DesignatedInitExpr : DStmt<Expr>; def DesignatedInitUpdateExpr : DStmt<Expr>; def ImplicitValueInitExpr : DStmt<Expr>; def NoInitExpr : DStmt<Expr>; +def ArrayInitLoopExpr : DStmt<Expr>; +def ArrayInitIndexExpr : DStmt<Expr>; def ParenListExpr : DStmt<Expr>; def VAArgExpr : DStmt<Expr>; def GenericSelectionExpr : DStmt<Expr>; @@ -233,3 +235,11 @@ def OMPDistributeParallelForDirective : DStmt<OMPLoopDirective>; def OMPDistributeParallelForSimdDirective : DStmt<OMPLoopDirective>; def OMPDistributeSimdDirective : DStmt<OMPLoopDirective>; def OMPTargetParallelForSimdDirective : DStmt<OMPLoopDirective>; +def OMPTargetSimdDirective : DStmt<OMPLoopDirective>; +def OMPTeamsDistributeDirective : DStmt<OMPLoopDirective>; +def OMPTeamsDistributeSimdDirective : DStmt<OMPLoopDirective>; +def OMPTeamsDistributeParallelForSimdDirective : DStmt<OMPLoopDirective>; +def OMPTeamsDistributeParallelForDirective : DStmt<OMPLoopDirective>; +def OMPTargetTeamsDirective : DStmt<OMPExecutableDirective>; +def OMPTargetTeamsDistributeDirective : DStmt<OMPLoopDirective>; +def OMPTargetTeamsDistributeParallelForDirective : DStmt<OMPLoopDirective>; |