summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorCarlo Bertolli <cbertol@us.ibm.com>2015-12-08 04:21:03 +0000
committerCarlo Bertolli <cbertol@us.ibm.com>2015-12-08 04:21:03 +0000
commit44e9da2f1106b00ca66e7c7d3ebf2b9520c8f8a8 (patch)
treed54e81bc9dccfd2ae7394da7d479d9ab742d58ec /include/clang-c
parent42d13bb475bd6123088361524db4211d0857341d (diff)
Add parse and sema for OpenMP distribute directive and all its clauses excluding dist_schedule.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@255001 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 5b846a518d..bd2116431b 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -2264,7 +2264,11 @@ enum CXCursorKind {
*/
CXCursor_OMPTaskLoopSimdDirective = 259,
- CXCursor_LastStmt = CXCursor_OMPTaskLoopSimdDirective,
+ /** \brief OpenMP distribute directive.
+ */
+ CXCursor_OMPDistributeDirective = 260,
+
+ CXCursor_LastStmt = CXCursor_OMPDistributeDirective,
/**
* \brief Cursor that represents the translation unit itself.