[OpenMP] Sema and parsing for 'target teams distribute parallel for’ pragma
This patch is to implement sema and parsing for 'target teams distribute parallel for’ pragma.
Differential Revision: https://reviews.llvm.org/D28160
llvm-svn: 290725
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h
index e6b1cd7..4799885 100644
--- a/clang/include/clang-c/Index.h
+++ b/clang/include/clang-c/Index.h
@@ -2362,7 +2362,11 @@
    */
   CXCursor_OMPTargetTeamsDistributeDirective = 276,
 
-  CXCursor_LastStmt = CXCursor_OMPTargetTeamsDistributeDirective,
+  /** \brief OpenMP target teams distribute parallel for directive.
+   */
+  CXCursor_OMPTargetTeamsDistributeParallelForDirective = 277,
+
+  CXCursor_LastStmt = CXCursor_OMPTargetTeamsDistributeParallelForDirective,
 
   /**
    * \brief Cursor that represents the translation unit itself.