summaryrefslogtreecommitdiff
path: root/include/llvm/Bitcode/BitstreamWriter.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-04-08 16:57:40 +0000
committerDouglas Gregor <dgregor@apple.com>2009-04-08 16:57:40 +0000
commit0648f54b889e0f627172acaa1d622f8d3d9f5409 (patch)
tree1e3c842b36870f14b1f6c77a2c4fbf4473e5eaac /include/llvm/Bitcode/BitstreamWriter.h
parent3d0355b825fa707f76dda05bd19730c096ae743c (diff)
downloadllvm-0648f54b889e0f627172acaa1d622f8d3d9f5409.tar.gz
llvm-0648f54b889e0f627172acaa1d622f8d3d9f5409.tar.bz2
llvm-0648f54b889e0f627172acaa1d622f8d3d9f5409.tar.xz
Use 8 instead of CHAR_BIT
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68616 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode/BitstreamWriter.h')
-rw-r--r--include/llvm/Bitcode/BitstreamWriter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Bitcode/BitstreamWriter.h b/include/llvm/Bitcode/BitstreamWriter.h
index 49fce1fcc8..55dd4dd49b 100644
--- a/include/llvm/Bitcode/BitstreamWriter.h
+++ b/include/llvm/Bitcode/BitstreamWriter.h
@@ -80,7 +80,7 @@ public:
std::vector<unsigned char> &getBuffer() { return Out; }
/// \brief Retrieve the current position in the stream, in bits.
- uint64_t GetCurrentBitNo() const { return Out.size() * CHAR_BIT + CurBit; }
+ uint64_t GetCurrentBitNo() const { return Out.size() * 8 + CurBit; }
//===--------------------------------------------------------------------===//
// Basic Primitives for emitting bits to the stream.