diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-09-24 19:27:20 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-09-24 19:27:20 +0000 |
commit | 5e02f6525d109c42650575c352bd2fdb14ed4193 (patch) | |
tree | 11638c614143145fe78fa44620101e8b5831d958 | |
parent | 71455895e6b333f42d226646bc93715f8f572870 (diff) |
[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
-rw-r--r-- | include/clang-c/Index.h | 1 |
1 files changed, 1 insertions, 0 deletions
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. */ |