diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2015-12-01 04:18:41 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2015-12-01 04:18:41 +0000 |
commit | 49f6e78d7118e5411488ebaf134de1fd2ff3f158 (patch) | |
tree | aacc2c2c6346a501acab425ad933050c7bb0d15f /clang/include/clang-c | |
parent | 1dbaf67537327eb4e34a80c11503bf06e18811e1 (diff) | |
download | bcm5719-llvm-49f6e78d7118e5411488ebaf134de1fd2ff3f158.tar.gz bcm5719-llvm-49f6e78d7118e5411488ebaf134de1fd2ff3f158.zip |
[OPENMP 4.5] Parsing/sema analysis for 'taskloop' directive.
Adds initial parsing and semantic analysis for 'taskloop' directive.
llvm-svn: 254367
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 d181dab8c3d..b71647564b9 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2256,7 +2256,11 @@ enum CXCursorKind { */ CXCursor_OMPTargetDataDirective = 257, - CXCursor_LastStmt = CXCursor_OMPTargetDataDirective, + /** \brief OpenMP taskloop directive. + */ + CXCursor_OMPTaskLoopDirective = 258, + + CXCursor_LastStmt = CXCursor_OMPTaskLoopDirective, /** * \brief Cursor that represents the translation unit itself. |