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:
Owen Anderson 2007-07-10 02:01:16 +00:00
parent 81c2a6ecbb
commit c5c7f755c8

View File

@ -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();