diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-08-24 23:51:02 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-08-24 23:51:02 +0000 |
commit | cd518a0ebc7c0a6aa41d717c360462540ef80a76 (patch) | |
tree | 4155d583a4939e7959ef7630fd77293c530b3e5d /include/clang/Serialization/ASTBitCodes.h | |
parent | 129a60b35a8a06a3b245f87bee56458979b32ba2 (diff) |
[ms-inline asm] Update the AST Reader/Writer for MS-style inline asms.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index dbe6e5a314..2f6c1de0d6 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -1001,6 +1001,8 @@ namespace clang { STMT_DECL, /// \brief An AsmStmt record. STMT_ASM, + /// \brief A MS-style AsmStmt record. + STMT_MSASM, /// \brief A PredefinedExpr record. EXPR_PREDEFINED, /// \brief A DeclRefExpr record. |