projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3102565
)
Bitcode: Fix a typo in an assert
author
Justin Bogner
<mail@justinbogner.com>
Thu, 9 Jan 2014 22:02:05 +0000
(22:02 +0000)
committer
Justin 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
patch
|
blob
|
history
diff --git
a/include/llvm/Bitcode/BitstreamWriter.h
b/include/llvm/Bitcode/BitstreamWriter.h
index f40a0d1d259fbe47698a13fc1a759ca1f0cd3be9..ef88a88a6cd8a50a2dd2437da38ebd7df01d625b 100644
(file)
--- a/
include/llvm/Bitcode/BitstreamWriter.h
+++ b/
include/llvm/Bitcode/BitstreamWriter.h
@@
-97,7
+97,7
@@
public:
: Out(O), CurBit(0), CurValue(0), CurCodeSize(2) {}
~BitstreamWriter() {
- assert(CurBit == 0 && "Unflused data remaining");
+ assert(CurBit == 0 && "Unflus
h
ed data remaining");
assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance");
// Free the BlockInfoRecords.