SmallVector: Resolve a long-standing fixme by using the existing unitialized_copy...
[oota-llvm.git] / include / llvm / ADT / SmallBitVector.h
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-13 Aaron BallmanSilencing a *lot* of -Wsign-compare warnings; NFC.
2014-12-12 Michael IlsemanClean up static analyzer warnings.
2014-10-27 NAKAMURA TakumiPrune CRLF.
2014-06-20 Yaron KerenCode in LoopStrengthReduce.cpp depends on SmallBitVecto...
2014-06-20 Yaron KerenReverting size_type for the containers from size_type...
2014-06-20 Yaron KerenThe count() function for STL datatypes returns unsigned...
2014-03-01 Chandler Carruth[C++11] Remove the R-value reference #if usage from...
2013-07-11 Benjamin KramerSync SmallBitVector with BitVector. Add unit tests...
2013-05-24 Michael J. SpencerReplace Count{Leading,Trailing}Zeros_{32,64} with count...
2013-03-15 Craig TopperUse NumBaseBits in a few more places in SmallBitVector...
2012-11-30 Chandler CarruthSwitch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_RE...
2012-10-16 Owen AndersonSpeculative fix the mask constants to be of type uintpt...
2012-10-15 Owen AndersonAdd range-based set()/reset() to BitVector. These...
2012-06-16 Benjamin KramerMerge the SmallBitVector and BitVector unit tests with...
2012-06-01 Benjamin KramerProvide move semantics for (Small)BitVector.
2012-02-05 Craig TopperConvert assert(0) to llvm_unreachable
2010-09-27 Dan GohmanAdd an all() method to BitVector, for testing whether...
2010-04-30 Benjamin KramerSmallBitVector: Rework find_first/find_next and tweak...
2010-04-30 Benjamin KramerImplement a read/write operator[] for SmallBitVector...
2010-04-30 Benjamin KramerMake sure SmallBitVector actually uses the small case...
2010-02-10 Dan GohmanImplement operators |=, &=, and ^= for SmallBitVector...
2010-01-05 Dan GohmanSome versions of GCC don't like non-static data members...
2010-01-05 Dan GohmanAdd a SmallBitVector class, which mimics BitVector...