summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorCarlo Bertolli <cbertol@us.ibm.com>2015-12-14 14:51:25 +0000
committerCarlo Bertolli <cbertol@us.ibm.com>2015-12-14 14:51:25 +0000
commit9ea793601531c610b9f8b913b91b19b809a289f5 (patch)
tree5d30f26e4b8c1befeb9239536a4a1ae0cb100bbc /include/clang-c
parenta64f410d661ba27a8c2a087df930b8c5df841260 (diff)
Add parse and sema of OpenMP distribute directive with all clauses except dist_schedule
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@255498 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 5aebf0973f..e7ba2b26a4 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -2262,7 +2262,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.