summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/BitVector.h
Commit message (Expand)AuthorAge
* Prune and tidy #includes.Dan Gohman2008-05-29
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-05
* Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov2008-02-20
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-29
* Added two bounds checks to the BitVector class to detectTed Kremenek2007-12-10
* Updated VC++ build system.Hartmut Kaiser2007-10-17
* make operator== work with non-equal sized bitvectors, as long as Chris Lattner2007-10-12
* make bitvector &= do the right thing if vectors have mismatched length.Chris Lattner2007-10-11
* This fixes resizing issues with BitVectors. It ensures that the BitWord type ...Chandler Carruth2007-08-06
* Evidently my earlier fix did not go far enough. When resizing a zero-sizedOwen Anderson2007-07-10
* When resizing a BitVector with size 0, be sure to clear the low word before u...Owen Anderson2007-07-09
* Rename identifier that GCC uses as a macro, breaking llvm-gcc build.Jeff Cohen2007-04-26
* Removed tabs everywhere except autogenerated & external files. Add makeAnton Korobeynikov2007-04-16
* Fix release build.Lauro Ramos Venancio2007-04-04
* Properly emit range comparisons for switch cases, where neighbour casesAnton Korobeynikov2007-04-04
* Add a dtor to fix leaks from all clients of BitVector.Chris Lattner2007-03-20
* Make it 64-bit safe.Evan Cheng2007-03-02
* Proper fix for the off-by-one bug in clear_unused_bits().Evan Cheng2007-02-15
* Fix an off-by-one bug in computing the index of the word to clear.Reid Spencer2007-02-15
* Make sure Capacity gets initialized too.Reid Spencer2007-02-15
* Missing a ;Evan Cheng2007-02-15
* BitVector::reference operator=(const reference& rhs) is unnecessary thanks to...Evan Cheng2007-02-15
* Remove unnecessary checks.Evan Cheng2007-02-15
* operator== returns false when two bitvectors have different sizes.Evan Cheng2007-02-15
* Merges two resize() variants.Evan Cheng2007-02-15
* Clear no longer deleting the bits to avoid mallocs.Evan Cheng2007-02-15
* BitVector::count() bugs.Evan Cheng2007-02-15
* Eliminate a redundent ctor; eliminate one more potential new [0].Evan Cheng2007-02-15
* 1 -> 1L since BitWord has type unsigned long.Evan Cheng2007-02-15
* Eliminate new[0], just set Bits to NULL.Evan Cheng2007-02-15
* Inverted the condition by accident.Evan Cheng2007-02-15
* Bug fixes: assignment operator forgot to copy over size; copy ctor forgot to ...Evan Cheng2007-02-15
* Add a BitVector class.Evan Cheng2007-02-15