Changeset View
Changeset View
Standalone View
Standalone View
clang/include/clang/Basic/StmtNodes.td
Show First 20 Lines • Show All 214 Lines • ▼ Show 20 Lines | |||||
// OpenCL Extensions. | // OpenCL Extensions. | ||||
def AsTypeExpr : StmtNode<Expr>; | def AsTypeExpr : StmtNode<Expr>; | ||||
// OpenMP Directives. | // OpenMP Directives. | ||||
def OMPExecutableDirective : StmtNode<Stmt, 1>; | def OMPExecutableDirective : StmtNode<Stmt, 1>; | ||||
def OMPLoopDirective : StmtNode<OMPExecutableDirective, 1>; | def OMPLoopDirective : StmtNode<OMPExecutableDirective, 1>; | ||||
def OMPParallelDirective : StmtNode<OMPExecutableDirective>; | def OMPParallelDirective : StmtNode<OMPExecutableDirective>; | ||||
def OMPSimdDirective : StmtNode<OMPLoopDirective>; | def OMPSimdDirective : StmtNode<OMPLoopDirective>; | ||||
def OMPTileDirective : StmtNode<OMPLoopDirective>; | |||||
def OMPForDirective : StmtNode<OMPLoopDirective>; | def OMPForDirective : StmtNode<OMPLoopDirective>; | ||||
def OMPForSimdDirective : StmtNode<OMPLoopDirective>; | def OMPForSimdDirective : StmtNode<OMPLoopDirective>; | ||||
def OMPSectionsDirective : StmtNode<OMPExecutableDirective>; | def OMPSectionsDirective : StmtNode<OMPExecutableDirective>; | ||||
def OMPSectionDirective : StmtNode<OMPExecutableDirective>; | def OMPSectionDirective : StmtNode<OMPExecutableDirective>; | ||||
def OMPSingleDirective : StmtNode<OMPExecutableDirective>; | def OMPSingleDirective : StmtNode<OMPExecutableDirective>; | ||||
def OMPMasterDirective : StmtNode<OMPExecutableDirective>; | def OMPMasterDirective : StmtNode<OMPExecutableDirective>; | ||||
def OMPCriticalDirective : StmtNode<OMPExecutableDirective>; | def OMPCriticalDirective : StmtNode<OMPExecutableDirective>; | ||||
def OMPParallelForDirective : StmtNode<OMPLoopDirective>; | def OMPParallelForDirective : StmtNode<OMPLoopDirective>; | ||||
▲ Show 20 Lines • Show All 44 Lines • Show Last 20 Lines |