summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorSamuel Antao <sfantao@us.ibm.com>2016-01-19 19:15:56 +0000
committerSamuel Antao <sfantao@us.ibm.com>2016-01-19 19:15:56 +0000
commitfaeccf347ca1aae1b3bce607766970ee5329200c (patch)
treebf6e3762f30271df9f536d099125de9354e21eea /include/clang-c
parented2c14216cb447992d4096de7055df10bd80bc4c (diff)
[OpenMP] Parsing + sema for "target enter data" directive.
Patch by Arpith Jacob. Thanks! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@258165 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 69a98d7978..c33ff95215 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -2274,7 +2274,11 @@ enum CXCursorKind {
*/
CXCursor_OMPDistributeDirective = 260,
- CXCursor_LastStmt = CXCursor_OMPDistributeDirective,
+ /** \brief OpenMP target enter data directive.
+ */
+ CXCursor_OMPTargetEnterDataDirective = 261,
+
+ CXCursor_LastStmt = CXCursor_OMPTargetEnterDataDirective,
/**
* \brief Cursor that represents the translation unit itself.