mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Evidently my earlier fix did not go far enough. When resizing a zero-sized
BitVector, make sure to set or clear ALL of the bits. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@38481 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
81c2a6ecbb
commit
c5c7f755c8
@ -188,7 +188,8 @@ public:
|
||||
|
||||
// If we previously had no size, initialize the low word
|
||||
if (Size == 0)
|
||||
Bits[0] = t;
|
||||
for (unsigned i = 0; i < Capacity; ++i)
|
||||
Bits[i] = 0 - (unsigned)t;
|
||||
|
||||
Size = N;
|
||||
clear_unused_bits();
|
||||
|
Loading…
x
Reference in New Issue
Block a user