git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174804
91177308-0d34-0410-b5e6-
96231b3b80d8
// Skip over any bits that are already consumed.
if (WordBitNo) {
- if (sizeof(word_t) >= 4)
+ if (sizeof(word_t) > 4)
Read64(WordBitNo);
else
Read(WordBitNo);
// If word_t is 64-bits and if we've read less than 32 bits, just dump
// the bits we have up to the next 32-bit boundary.
if (sizeof(word_t) > 4 &&
- BitsInCurWord > 32) {
+ BitsInCurWord >= 32) {
CurWord >>= BitsInCurWord-32;
BitsInCurWord = 32;
return;