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 170e4e7fad5..b00df33683b 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2333,7 +2333,11 @@ enum CXCursorKind { */ CXCursor_OMPTeamsDistributeDirective = 271, - CXCursor_LastStmt = CXCursor_OMPTeamsDistributeDirective, + /** \brief OpenMP teams distribute simd directive. + */ + CXCursor_OMPTeamsDistributeSimdDirective = 272, + + CXCursor_LastStmt = CXCursor_OMPTeamsDistributeSimdDirective, /** * \brief Cursor that represents the translation unit itself. |