summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2015-12-01 04:18:41 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2015-12-01 04:18:41 +0000
commit3cddbb56a1edcd60378cbc5bfbd93ac8f3fac0c4 (patch)
tree64c3b0f3723521abbe41c7d2d2c26442543b1579 /include/clang-c
parent8ad3521b882e57820bac6b8968cb09455861dc74 (diff)
[OPENMP 4.5] Parsing/sema analysis for 'taskloop' directive.
Adds initial parsing and semantic analysis for 'taskloop' directive. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@254367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index d181dab8c3..b71647564b 100644
--- a/include/clang-c/Index.h
+++ b/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.