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 71b26c2027e..65956c501ac 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2313,7 +2313,11 @@ enum CXCursorKind { */ CXCursor_OMPDistributeParallelForSimdDirective = 267, - CXCursor_LastStmt = CXCursor_OMPDistributeParallelForSimdDirective, + /** \brief OpenMP distribute simd directive. + */ + CXCursor_OMPDistributeSimdDirective = 268, + + CXCursor_LastStmt = CXCursor_OMPDistributeSimdDirective, /** * \brief Cursor that represents the translation unit itself. |