[llvm] r198894 - Bitcode: Fix a typo in an assert
Justin Bogner
mail at justinbogner.com
Thu Jan 9 14:02:05 PST 2014
Author: bogner
Date: Thu Jan 9 16:02:05 2014
New Revision: 198894
URL: http://llvm.org/viewvc/llvm-project?rev=198894&view=rev
Log:
Bitcode: Fix a typo in an assert
Modified:
llvm/trunk/include/llvm/Bitcode/BitstreamWriter.h
Modified: llvm/trunk/include/llvm/Bitcode/BitstreamWriter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Bitcode/BitstreamWriter.h?rev=198894&r1=198893&r2=198894&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Bitcode/BitstreamWriter.h (original)
+++ llvm/trunk/include/llvm/Bitcode/BitstreamWriter.h Thu Jan 9 16:02:05 2014
@@ -97,7 +97,7 @@ public:
: Out(O), CurBit(0), CurValue(0), CurCodeSize(2) {}
~BitstreamWriter() {
- assert(CurBit == 0 && "Unflused data remaining");
+ assert(CurBit == 0 && "Unflushed data remaining");
assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance");
// Free the BlockInfoRecords.
More information about the llvm-commits
mailing list