From 5e02f6525d109c42650575c352bd2fdb14ed4193 Mon Sep 17 00:00:00 2001 From: Argyrios Kyrtzidis Date: Mon, 24 Sep 2012 19:27:20 +0000 Subject: [PATCH] [libclang] Bring CXCursor_AsmStmt back as an alias for CXCursor_GCCAsmStmt. This was renamed in r162632 which was badness because the C API needs to be stable. rdar://12360096 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164547 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang-c/Index.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index 1280fb3de4..80555357b1 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -1907,6 +1907,7 @@ enum CXCursorKind { /** \brief A GCC inline assembly statement extension. */ CXCursor_GCCAsmStmt = 215, + CXCursor_AsmStmt = CXCursor_GCCAsmStmt, /** \brief Objective-C's overall \@try-\@catch-\@finally statement. */ -- 2.40.0