Fixed/added namespace ending comments using clang-tidy. NFC
[oota-llvm.git] / include / llvm / ADT / BitVector.h
2015-06-19 Alexander KornienkoFixed/added namespace ending comments using clang-tidy...
2015-03-03 David Blaikie[Small]BitVector::reference: Explicitly default copy...
2015-02-12 Benjamin KramerMathExtras: Bring Count(Trailing|Leading)Ones and Count...
2015-02-12 Benjamin KramerBitVector: Remove manual bit width dispatch, this is...
2014-12-15 Michael IlsemanSilence more static analyzer warnings.
2014-12-12 Michael IlsemanClean up static analyzer warnings.
2014-06-20 Yaron KerenAttempting to fix the 64 bit bots.
2014-06-20 Yaron KerenThe count() function for STL datatypes returns unsigned...
2014-04-14 Craig Topper[C++11] More 'nullptr' conversion. In some cases just...
2014-03-31 Joerg SonnenbergerShifting into the sign bit is UB as discussed on IRC...
2014-03-01 Chandler Carruth[C++11] Remove the R-value reference #if usage from...
2013-12-19 Anna ZaksFix a buffer overrun detected by AddressSanitizer.
2013-06-07 Benjamin KramerBitVector: Do the right thing in all() when Size is...
2013-06-07 Benjamin KramerOptimize BitVector::all().
2013-05-24 Michael J. SpencerReplace Count{Leading,Trailing}Zeros_{32,64} with count...
2012-11-30 Chandler CarruthSwitch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_RE...
2012-10-16 Owen AndersonFix a bug in the set(I,E)/reset(I,E) methods that I...
2012-10-15 Owen AndersonAdd range-based set()/reset() to BitVector. These...
2012-09-06 Nadav RotemAdd a new optimization pass: Stack Coloring, that merge...
2012-08-24 Richard SmithFix integer undefined behavior due to signed left shift...
2012-06-01 Benjamin KramerProvide move semantics for (Small)BitVector.
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.