diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-18 04:14:57 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-18 04:14:57 +0000 |
commit | f29276edb7b9c85c9f521eb3e301259bee17aa33 (patch) | |
tree | 5173803cd839d4c3ab843cd43945471c7296784f /clang/include/clang-c | |
parent | 0039f3f0607702f2d16d60addff74c67869e2144 (diff) | |
download | bcm5719-llvm-f29276edb7b9c85c9f521eb3e301259bee17aa33.tar.gz bcm5719-llvm-f29276edb7b9c85c9f521eb3e301259bee17aa33.zip |
[OPENMP] Initial support for '#pragma omp for' (fixed incompatibility with MSVC).
llvm-svn: 211140
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 49d2bc40479..4deb60b1a52 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2139,7 +2139,11 @@ enum CXCursorKind { */ CXCursor_OMPSimdDirective = 233, - CXCursor_LastStmt = CXCursor_OMPSimdDirective, + /** \brief OpenMP for directive. + */ + CXCursor_OMPForDirective = 234, + + CXCursor_LastStmt = CXCursor_OMPForDirective, /** * \brief Cursor that represents the translation unit itself. |