summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorSamuel Antao <sfantao@us.ibm.com>2016-01-19 20:04:50 +0000
committerSamuel Antao <sfantao@us.ibm.com>2016-01-19 20:04:50 +0000
commit5243a6feb0e10358b6dd05b0fa1225d6cb51263b (patch)
tree2179649dab984188c5cd0f78395d67c1c16bce45 /include/clang-c
parentd79077e1574d20d7e444ef09b579d040497544bf (diff)
[OpenMP] Parsing + sema for "target exit data" directive.
Patch by Arpith Jacob. Thanks! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@258177 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 c33ff95215..c884b14b15 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -2278,7 +2278,11 @@ enum CXCursorKind {
*/
CXCursor_OMPTargetEnterDataDirective = 261,
- CXCursor_LastStmt = CXCursor_OMPTargetEnterDataDirective,
+ /** \brief OpenMP target exit data directive.
+ */
+ CXCursor_OMPTargetExitDataDirective = 262,
+
+ CXCursor_LastStmt = CXCursor_OMPTargetExitDataDirective,
/**
* \brief Cursor that represents the translation unit itself.