aboutsummaryrefslogtreecommitdiff
path: root/lib/Bitcode/Writer/Serialize.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2007-11-06 19:49:50 +0000
committerTed Kremenek <kremenek@apple.com>2007-11-06 19:49:50 +0000
commit730c273d427709a0caabaf2571c66995edae0b96 (patch)
tree43bb4ca097b02e6f8db023faee3afe82ecea1091 /lib/Bitcode/Writer/Serialize.cpp
parent26e25b3bf0c4f423a5a06263ea060643bc788909 (diff)
Renamed "Flush()" to "FlushRecord()".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43772 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Writer/Serialize.cpp')
-rw-r--r--lib/Bitcode/Writer/Serialize.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Bitcode/Writer/Serialize.cpp b/lib/Bitcode/Writer/Serialize.cpp
index f25a1542d3..8e3bb1b1aa 100644
--- a/lib/Bitcode/Writer/Serialize.cpp
+++ b/lib/Bitcode/Writer/Serialize.cpp
@@ -29,7 +29,7 @@ Serializer::~Serializer() {
while (BlockLevel > 0)
Stream.ExitBlock();
-
+
Stream.FlushToWord();
}
@@ -40,7 +40,7 @@ void Serializer::EmitRecord() {
}
void Serializer::EnterBlock(unsigned BlockID,unsigned CodeLen) {
- Flush();
+ FlushRecord();
Stream.EnterSubblock(BlockID,CodeLen);
++BlockLevel;
}
@@ -48,7 +48,7 @@ void Serializer::EnterBlock(unsigned BlockID,unsigned CodeLen) {
void Serializer::ExitBlock() {
assert (BlockLevel > 0);
--BlockLevel;
- Flush();
+ FlushRecord();
Stream.ExitBlock();
}