summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-10-24 17:26:43 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-10-24 17:26:43 +0000
commit97bfda9b9b7d44c1201608c636c3fa838261e7f6 (patch)
tree3b64848870f76885bda110fff2996b854bf86c90 /clang
parenteb39d9a9ece9b1371bf769c1818a249481bc5921 (diff)
downloadbcm5719-llvm-97bfda9b9b7d44c1201608c636c3fa838261e7f6.tar.gz
bcm5719-llvm-97bfda9b9b7d44c1201608c636c3fa838261e7f6.zip
Some method renaming, no functionality change.
llvm-svn: 117237
Diffstat (limited to 'clang')
-rw-r--r--clang/include/clang/Serialization/ASTWriter.h4
-rw-r--r--clang/lib/Serialization/ASTWriter.cpp8
2 files changed, 6 insertions, 6 deletions
diff --git a/clang/include/clang/Serialization/ASTWriter.h b/clang/include/clang/Serialization/ASTWriter.h
index 1c3245daa3a..71d20dda5ee 100644
--- a/clang/include/clang/Serialization/ASTWriter.h
+++ b/clang/include/clang/Serialization/ASTWriter.h
@@ -289,8 +289,8 @@ private:
void WriteReferencedSelectorsPool(Sema &SemaRef);
void WriteIdentifierTable(Preprocessor &PP);
void WriteAttributes(const AttrVec &Attrs, RecordDataImpl &Record);
- void WriteDeclChangeSetBlocks();
- void WriteDeclUpdateBlock();
+ void WriteDeclUpdatesBlocks();
+ void WriteDeclReplacementsBlock();
void WriteDeclContextVisibleUpdate(const DeclContext *DC);
void WriteAdditionalTemplateSpecializations();
diff --git a/clang/lib/Serialization/ASTWriter.cpp b/clang/lib/Serialization/ASTWriter.cpp
index 5d36e946070..7636f02bdf0 100644
--- a/clang/lib/Serialization/ASTWriter.cpp
+++ b/clang/lib/Serialization/ASTWriter.cpp
@@ -2697,19 +2697,19 @@ void ASTWriter::WriteASTChain(Sema &SemaRef, MemorizeStatCalls *StatCalls,
if (!AdditionalTemplateSpecializations.empty())
WriteAdditionalTemplateSpecializations();
- WriteDeclChangeSetBlocks();
+ WriteDeclUpdatesBlocks();
Record.clear();
Record.push_back(NumStatements);
Record.push_back(NumMacros);
Record.push_back(NumLexicalDeclContexts);
Record.push_back(NumVisibleDeclContexts);
- WriteDeclUpdateBlock();
+ WriteDeclReplacementsBlock();
Stream.EmitRecord(STATISTICS, Record);
Stream.ExitBlock();
}
-void ASTWriter::WriteDeclChangeSetBlocks() {
+void ASTWriter::WriteDeclUpdatesBlocks() {
if (DeclUpdates.empty())
return;
@@ -2730,7 +2730,7 @@ void ASTWriter::WriteDeclChangeSetBlocks() {
Stream.EmitRecord(DECL_UPDATE_OFFSETS, OffsetsRecord);
}
-void ASTWriter::WriteDeclUpdateBlock() {
+void ASTWriter::WriteDeclReplacementsBlock() {
if (ReplacedDecls.empty())
return;
OpenPOWER on IntegriCloud