Clarify that the NextPowerOfTwo template is idempotent.
[oota-llvm.git] / include / llvm / ADT / SmallPtrSet.h
2010-06-30 Duncan SandsClarify that the NextPowerOfTwo template is idempotent.
2010-06-30 Duncan SandsRather than giving SmallPtrSetImpl a member field Small...
2010-06-29 Duncan SandsFix a buffer overflow noticed by gcc-4.6: zero is writt...
2010-06-29 Duncan SandsNextPowerOfTwo was already used to ensure that SmallSiz...
2010-02-12 Bob WilsonFix a comment typo.
2009-10-26 Chandler CarruthMove DataTypes.h to include/llvm/System, update all...
2009-07-08 Douglas GregorMake SmallPtrSet iterators real iterators
2009-03-29 Chris Lattnerrename PointerLikeTypeInto to PointerLikeTypeTraits...
2009-03-28 Chris Lattnerdeclare everything as class to avoid angering the VC...
2009-03-28 Chris Lattneradd a traits class for SmallPtrSet that allows us to...
2009-02-07 Dan GohmanChange several SmallPtrSetImpl members from public...
2009-01-09 Misha BrukmanRemoved trailing whitespace.
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-03-25 Dan GohmanAdd explicit keywords.
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-11-06 Chris Lattnermake smallptrset more const and type correct, which...
2007-08-15 Anton KorobeynikovProperly use const qualifiers
2007-08-05 Chris LattnerWhen clearing a SmallPtrSet, if the set had a huge...
2007-07-27 Owen AndersonAllow SmallPtrSet to hold pointers to const data.
2007-07-17 Reid SpencerUnbreak the build by putting calls to free into the...
2007-07-16 Owen AndersonUse realloc() to (potentially) resize the contents...
2007-07-09 Owen AndersonMake the assignment operator for SmallPtrSet return...
2007-07-09 Chris Lattnerwork around an aparent gcc name resolution bug by
2007-07-09 Chris Lattnerimplement operator= for smallptrset
2007-04-14 Jeff CohenFix PR1329.
2007-04-02 Chris Lattneradd range version of insert()
2007-03-04 Chris Lattneradd iterator range version of ctor.
2007-03-02 Chris LattnerFix PR1234 by working around a compiler bug.
2007-02-07 Chris Lattnerdo not let the table fill up with tombstones.
2007-01-27 Chris Lattnerprovide a definition for uintptr_t
2007-01-27 Chris Lattneradd some missing API
2007-01-27 Chris Lattnerimplement SmallPtrSet::erase
2007-01-27 Chris LattnerFix a limitation of SmallPtrSet. Before it would asser...
2007-01-27 Chris Lattneradd some comments on the algorithm
2007-01-27 Chris LattnerAdd a new SmallSet ADT specialized for pointers.