diff options
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index c884b14b155..25b8dd8f9eb 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2282,7 +2282,11 @@ enum CXCursorKind { */ CXCursor_OMPTargetExitDataDirective = 262, - CXCursor_LastStmt = CXCursor_OMPTargetExitDataDirective, + /** \brief OpenMP target parallel directive. + */ + CXCursor_OMPTargetParallelDirective = 263, + + CXCursor_LastStmt = CXCursor_OMPTargetParallelDirective, /** * \brief Cursor that represents the translation unit itself. |