Author: rnk
Date: Thu Jul 24 13:22:15 2014
New Revision: 213886

URL: http://llvm.org/viewvc/llvm-project?rev=213886&view=rev
Log:
Preserve libclang ABI compatibility with  the 3.5 release

Modified:
    cfe/trunk/include/clang-c/Index.h

Modified: cfe/trunk/include/clang-c/Index.h
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang-c/Index.h?rev=213886&r1=213885&r2=213886&view=diff
==============================================================================
--- cfe/trunk/include/clang-c/Index.h (original)
+++ cfe/trunk/include/clang-c/Index.h Thu Jul 24 13:22:15 2014
@@ -2191,19 +2191,19 @@ enum CXCursorKind {
    */
   CXCursor_OMPFlushDirective             = 246,
 
-  /** \brief OpenMP ordered directive.
+  /** \brief Windows Structured Exception Handling's leave statement.
    */
-  CXCursor_OMPOrderedDirective           = 247,
+  CXCursor_SEHLeaveStmt                  = 247,
 
-  /** \brief OpenMP atomic directive.
+  /** \brief OpenMP ordered directive.
    */
-  CXCursor_OMPAtomicDirective            = 248,
+  CXCursor_OMPOrderedDirective           = 248,
 
-  /** \brief Windows Structured Exception Handling's leave statement.
+  /** \brief OpenMP atomic directive.
    */
-  CXCursor_SEHLeaveStmt                  = 249,
+  CXCursor_OMPAtomicDirective            = 249,
 
-  CXCursor_LastStmt                      = CXCursor_SEHLeaveStmt,
+  CXCursor_LastStmt                      = CXCursor_OMPAtomicDirective,
 
   /**
    * \brief Cursor that represents the translation unit itself.


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to