mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Proper fix for the off-by-one bug in clear_unused_bits().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34328 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1500515406
commit
b5aabee330
@ -290,12 +290,10 @@ private:
|
||||
|
||||
// Clear the unused top bits in the high word.
|
||||
void clear_unused_bits() {
|
||||
if (Size) {
|
||||
unsigned ExtraBits = Size % BITS_PER_WORD;
|
||||
unsigned ExtraBits = Size % BITS_PER_WORD;
|
||||
if (ExtraBits) {
|
||||
unsigned index = Size / BITS_PER_WORD;
|
||||
if (Size % BITS_PER_WORD == 0)
|
||||
index--;
|
||||
Bits[index] &= ~(~0 << ExtraBits);
|
||||
Bits[index] &= ~(~0L << ExtraBits);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user