diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-07-27 04:19:32 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-07-27 04:19:32 +0000 |
commit | a27c26e7d87488c80221158dbe321fbd2df508a8 (patch) | |
tree | 87086dc1174c6021192be542f3281574d6347439 /clang/lib/Serialization/ASTWriter.cpp | |
parent | 21ad7e5243dd8f526f2427db46862174d39722f5 (diff) | |
download | bcm5719-llvm-a27c26e7d87488c80221158dbe321fbd2df508a8.tar.gz bcm5719-llvm-a27c26e7d87488c80221158dbe321fbd2df508a8.zip |
[modules] Add abbreviation for ImplicitCastExpr. This is the most common
record type in LLVM's IR module.
llvm-svn: 214048
Diffstat (limited to 'clang/lib/Serialization/ASTWriter.cpp')
-rw-r--r-- | clang/lib/Serialization/ASTWriter.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/lib/Serialization/ASTWriter.cpp b/clang/lib/Serialization/ASTWriter.cpp index 2b096fc0957..de270f35015 100644 --- a/clang/lib/Serialization/ASTWriter.cpp +++ b/clang/lib/Serialization/ASTWriter.cpp @@ -4055,10 +4055,11 @@ ASTWriter::ASTWriter(llvm::BitstreamWriter &Stream) NextCXXBaseSpecifiersID(1), TypeExtQualAbbrev(0), TypeFunctionProtoAbbrev(0), DeclParmVarAbbrev(0), DeclContextLexicalAbbrev(0), DeclContextVisibleLookupAbbrev(0), - UpdateVisibleAbbrev(0), DeclRefExprAbbrev(0), CharacterLiteralAbbrev(0), - DeclRecordAbbrev(0), IntegerLiteralAbbrev(0), DeclTypedefAbbrev(0), + UpdateVisibleAbbrev(0), DeclRecordAbbrev(0), DeclTypedefAbbrev(0), DeclVarAbbrev(0), DeclFieldAbbrev(0), DeclEnumAbbrev(0), - DeclObjCIvarAbbrev(0), DeclCXXMethodAbbrev(0) {} + DeclObjCIvarAbbrev(0), DeclCXXMethodAbbrev(0), DeclRefExprAbbrev(0), + CharacterLiteralAbbrev(0), IntegerLiteralAbbrev(0), + ExprImplicitCastAbbrev(0) {} ASTWriter::~ASTWriter() { llvm::DeleteContainerSeconds(FileDeclIDs); |