Bitcode: Fix a typo in an assert
authorJustin Bogner <mail@justinbogner.com>
Thu, 9 Jan 2014 22:02:05 +0000 (22:02 +0000)
committerJustin Bogner <mail@justinbogner.com>
Thu, 9 Jan 2014 22:02:05 +0000 (22:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198894 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Bitcode/BitstreamWriter.h

index f40a0d1d259fbe47698a13fc1a759ca1f0cd3be9..ef88a88a6cd8a50a2dd2437da38ebd7df01d625b 100644 (file)
@@ -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.