[cfe-commits] r164547 - /cfe/trunk/include/clang-c/Index.h
Argyrios Kyrtzidis
akyrtzi at gmail.com
Mon Sep 24 12:27:21 PDT 2012
Author: akirtzidis
Date: Mon Sep 24 14:27:20 2012
New Revision: 164547
URL: http://llvm.org/viewvc/llvm-project?rev=164547&view=rev
Log:
[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
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=164547&r1=164546&r2=164547&view=diff
==============================================================================
--- cfe/trunk/include/clang-c/Index.h (original)
+++ cfe/trunk/include/clang-c/Index.h Mon Sep 24 14:27:20 2012
@@ -1907,6 +1907,7 @@
/** \brief A GCC inline assembly statement extension.
*/
CXCursor_GCCAsmStmt = 215,
+ CXCursor_AsmStmt = CXCursor_GCCAsmStmt,
/** \brief Objective-C's overall \@try-\@catch-\@finally statement.
*/
More information about the cfe-commits
mailing list