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 df6cc6baf78..1f132dea5ec 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2346,7 +2346,11 @@ enum CXCursorKind { */ CXCursor_OMPTeamsDistributeSimdDirective = 272, - CXCursor_LastStmt = CXCursor_OMPTeamsDistributeSimdDirective, + /** \brief OpenMP teams distribute parallel for simd directive. + */ + CXCursor_OMPTeamsDistributeParallelForSimdDirective = 273, + + CXCursor_LastStmt = CXCursor_OMPTeamsDistributeParallelForSimdDirective, /** * \brief Cursor that represents the translation unit itself. |