summaryrefslogtreecommitdiff
path: root/include/clang/Basic/StmtNodes.td
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2014-06-18 04:14:57 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2014-06-18 04:14:57 +0000
commitb23263a1ac3e4c6080c2b1f56cc42d2f24faf856 (patch)
treef26d7c1d5fa22602e10da6c02436ce553ffc78fc /include/clang/Basic/StmtNodes.td
parent6356f564c351af8b22e7c2699d52e2062ae9e76e (diff)
downloadclang-b23263a1ac3e4c6080c2b1f56cc42d2f24faf856.tar.gz
clang-b23263a1ac3e4c6080c2b1f56cc42d2f24faf856.tar.bz2
clang-b23263a1ac3e4c6080c2b1f56cc42d2f24faf856.tar.xz
[OPENMP] Initial support for '#pragma omp for' (fixed incompatibility with MSVC).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211140 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/StmtNodes.td')
-rw-r--r--include/clang/Basic/StmtNodes.td1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Basic/StmtNodes.td b/include/clang/Basic/StmtNodes.td
index 0f0f284476..d04ba597a6 100644
--- a/include/clang/Basic/StmtNodes.td
+++ b/include/clang/Basic/StmtNodes.td
@@ -179,3 +179,4 @@ def AsTypeExpr : DStmt<Expr>;
def OMPExecutableDirective : Stmt<1>;
def OMPParallelDirective : DStmt<OMPExecutableDirective>;
def OMPSimdDirective : DStmt<OMPExecutableDirective>;
+def OMPForDirective : DStmt<OMPExecutableDirective>;