[OPENMP] Initial parsing and sema analysis of 'taskyield' directive.

llvm-svn: 213355
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h
index c514fb0..a467f7d 100644
--- a/clang/include/clang-c/Index.h
+++ b/clang/include/clang-c/Index.h
@@ -2171,9 +2171,13 @@
    */
   CXCursor_OMPMasterDirective            = 241,
 
+  /** \brief OpenMP taskyield directive.
+   */
+  CXCursor_OMPTaskyieldDirective         = 242,
+
   /** \brief Windows Structured Exception Handling's leave statement.
    */
-  CXCursor_SEHLeaveStmt                  = 242,
+  CXCursor_SEHLeaveStmt                  = 243,
 
   CXCursor_LastStmt                      = CXCursor_SEHLeaveStmt,