Don't attribute in file headers anymore. See llvmdev for the
[oota-llvm.git] / include / llvm / ADT / BitVector.h
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-12-10 Ted KremenekAdded two bounds checks to the BitVector class to detect
2007-10-17 Hartmut KaiserUpdated VC++ build system.
2007-10-12 Chris Lattnermake operator== work with non-equal sized bitvectors...
2007-10-11 Chris Lattnermake bitvector &= do the right thing if vectors have...
2007-08-06 Chandler CarruthThis fixes resizing issues with BitVectors. It ensures...
2007-07-10 Owen AndersonEvidently my earlier fix did not go far enough. When...
2007-07-09 Owen AndersonWhen resizing a BitVector with size 0, be sure to clear...
2007-04-26 Jeff CohenRename identifier that GCC uses as a macro, breaking...
2007-04-16 Anton KorobeynikovRemoved tabs everywhere except autogenerated & external...
2007-04-04 Lauro Ramos VenancioFix release build.
2007-04-04 Anton KorobeynikovProperly emit range comparisons for switch cases, where...
2007-03-20 Chris LattnerAdd a dtor to fix leaks from all clients of BitVector.
2007-03-02 Evan ChengMake it 64-bit safe.
2007-02-15 Evan ChengProper fix for the off-by-one bug in clear_unused_bits().
2007-02-15 Reid SpencerFix an off-by-one bug in computing the index of the...
2007-02-15 Reid SpencerMake sure Capacity gets initialized too.
2007-02-15 Evan ChengMissing a ;
2007-02-15 Evan ChengBitVector::reference operator=(const reference& rhs...
2007-02-15 Evan ChengRemove unnecessary checks.
2007-02-15 Evan Chengoperator== returns false when two bitvectors have diffe...
2007-02-15 Evan ChengMerges two resize() variants.
2007-02-15 Evan ChengClear no longer deleting the bits to avoid mallocs.
2007-02-15 Evan ChengBitVector::count() bugs.
2007-02-15 Evan ChengEliminate a redundent ctor; eliminate one more potentia...
2007-02-15 Evan Cheng1 -> 1L since BitWord has type unsigned long.
2007-02-15 Evan ChengEliminate new[0], just set Bits to NULL.
2007-02-15 Evan ChengInverted the condition by accident.
2007-02-15 Evan ChengBug fixes: assignment operator forgot to copy over...
2007-02-15 Evan ChengAdd a BitVector class.