diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-07-05 14:23:59 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-07-05 14:23:59 +0000 |
| commit | c192b3dcffd5e672a2b2e1730e2440febb4fb192 (patch) | |
| tree | ac719b5984165053bf83d71142e4d96b609b9784 /include/clang-c | |
| parent | 2e645aa5697838f16ec570eb07c2bee7e13d0e0b (diff) | |
Diffstat (limited to 'include/clang-c')
| -rw-r--r-- | include/clang-c/Index.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index a2241802078e..fad9cfa61b3c 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -2225,12 +2225,19 @@ enum CXCursorKind { */ CXCursor_OMPTeamsDirective = 253, - /** \brief OpenMP taskwait directive. + /** \brief OpenMP taskgroup directive. */ CXCursor_OMPTaskgroupDirective = 254, + /** \brief OpenMP cancellation point directive. + */ + CXCursor_OMPCancellationPointDirective = 255, + + /** \brief OpenMP cancel directive. + */ + CXCursor_OMPCancelDirective = 256, - CXCursor_LastStmt = CXCursor_OMPTaskgroupDirective, + CXCursor_LastStmt = CXCursor_OMPCancelDirective, /** * \brief Cursor that represents the translation unit itself. |
