diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-17 11:49:22 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-17 11:49:22 +0000 |
commit | c77dd5257a9388a34d4bc7b0105be88bc456b192 (patch) | |
tree | 8010c6b96d7ef452d399fa708e25e781a387d210 /clang/include/clang-c | |
parent | d5531f72dc1d4c85997a13530fc783c8dfaab25c (diff) | |
download | bcm5719-llvm-c77dd5257a9388a34d4bc7b0105be88bc456b192.tar.gz bcm5719-llvm-c77dd5257a9388a34d4bc7b0105be88bc456b192.zip |
[OPENMP] Initial support for '#pragma omp for'.
llvm-svn: 211096
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. |