]> granicus.if.org Git - clang/commitdiff
Preserve libclang ABI compatibility with the 3.5 release
authorReid Kleckner <reid@kleckner.net>
Thu, 24 Jul 2014 18:22:15 +0000 (18:22 +0000)
committerReid Kleckner <reid@kleckner.net>
Thu, 24 Jul 2014 18:22:15 +0000 (18:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@213886 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang-c/Index.h

index dfc3a47f9f460962b96bc71ec2728d245f6f6ede..27655774f0872d424b24897ceb9edf0d4bee9629 100644 (file)
@@ -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.