diff options
author | Andrew Trick <atrick@apple.com> | 2010-10-19 21:54:32 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2010-10-19 21:54:32 +0000 |
commit | ba266eec79a9293910a5875d31cc0813bbc8a233 (patch) | |
tree | 848d0ef94404592138278534c9e649f7a55f9be1 /clang/lib/Serialization/ASTWriterDecl.cpp | |
parent | 7f48df30174d9be4e23ca04731d167beb0ce2f91 (diff) | |
download | bcm5719-llvm-ba266eec79a9293910a5875d31cc0813bbc8a233.tar.gz bcm5719-llvm-ba266eec79a9293910a5875d31cc0813bbc8a233.zip |
Putting back safe fixes 116836,116837,116838
llvm-svn: 116866
Diffstat (limited to 'clang/lib/Serialization/ASTWriterDecl.cpp')
-rw-r--r-- | clang/lib/Serialization/ASTWriterDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Serialization/ASTWriterDecl.cpp b/clang/lib/Serialization/ASTWriterDecl.cpp index 24ac8f44179..6bf5598c930 100644 --- a/clang/lib/Serialization/ASTWriterDecl.cpp +++ b/clang/lib/Serialization/ASTWriterDecl.cpp @@ -1116,13 +1116,13 @@ void ASTWriter::WriteDeclsBlockAbbrevs() { Abv->Add(BitCodeAbbrevOp(0)); // hasExtInfo Abv->Add(BitCodeAbbrevOp(serialization::PREDEF_TYPE_NULL_ID)); // InfoType // VarDecl + Abv->Add(BitCodeAbbrevOp(0)); // No redeclaration Abv->Add(BitCodeAbbrevOp(0)); // StorageClass Abv->Add(BitCodeAbbrevOp(0)); // StorageClassAsWritten Abv->Add(BitCodeAbbrevOp(0)); // isThreadSpecified Abv->Add(BitCodeAbbrevOp(0)); // hasCXXDirectInitializer Abv->Add(BitCodeAbbrevOp(0)); // isExceptionVariable Abv->Add(BitCodeAbbrevOp(0)); // isNRVOVariable - Abv->Add(BitCodeAbbrevOp(0)); // PrevDecl Abv->Add(BitCodeAbbrevOp(0)); // HasInit Abv->Add(BitCodeAbbrevOp(0)); // HasMemberSpecializationInfo // ParmVarDecl |