Remove the expensive BitVector::operator~().
[oota-llvm.git] / include / llvm / ADT / BitVector.h
2012-05-14 Jakob Stoklund OlesenRemove the expensive BitVector::operator~().
2012-05-14 Jakob Stoklund OlesenRemove BitVector binops.
2012-05-14 Jakob Stoklund OlesenAdd BitVector::anyCommon().
2012-02-05 Craig TopperConvert assert(0) to llvm_unreachable
2012-01-29 Jakob Stoklund OlesenAdd a BitVector::reset(BitVector&) method.
2012-01-17 Jakob Stoklund OlesenAdd portable bit mask operations to BitVector.
2010-11-26 Benjamin KramerBitVector tweaks.
2010-09-27 Dan GohmanAdd an all() method to BitVector, for testing whether...
2010-04-30 Dan GohmanUpdate BitVectorTest.cpp to stay in sync with SmallBitV...
2010-03-16 Chris Lattnerwork around an MSVC2010 bug, PR6504
2010-02-10 Dan GohmanImplement operators |=, &=, and ^= for SmallBitVector...
2010-01-05 Dan GohmanAdd a SmallBitVector class, which mimics BitVector...
2009-04-01 Dan GohmanUse CHAR_BIT instead of hard-coding 8 in several places...
2009-01-26 Roman LevensteinFix a bug in BitVector.h. All assignment operations...
2009-01-09 Misha BrukmanRemoved trailing whitespace.
2008-05-29 Dan GohmanPrune and tidy #includes.
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-02-20 Anton KorobeynikovUnbreak build with gcc 4.3: provide missed includes...
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.