From 7ade93f5e29c470f624ec5b71a92aadd6256a357 Mon Sep 17 00:00:00 2001 From: Kelvin Li Date: Fri, 9 Dec 2016 03:24:30 +0000 Subject: [OpenMP] Sema and parsing for 'teams distribute parallel for' pragma This patch is to implement sema and parsing for 'teams distribute parallel for' pragma. Differential Revision: https://reviews.llvm.org/D27345 llvm-svn: 289179 --- clang/include/clang-c/Index.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'clang/include/clang-c') diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 050c42a3738..f5d44f8f207 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2350,7 +2350,11 @@ enum CXCursorKind { */ CXCursor_OMPTeamsDistributeParallelForSimdDirective = 273, - CXCursor_LastStmt = CXCursor_OMPTeamsDistributeParallelForSimdDirective, + /** \brief OpenMP teams distribute parallel for directive. + */ + CXCursor_OMPTeamsDistributeParallelForDirective = 274, + + CXCursor_LastStmt = CXCursor_OMPTeamsDistributeParallelForDirective, /** * \brief Cursor that represents the translation unit itself. -- cgit v1.2.3