SmallVector: Resolve a long-standing fixme by using the existing unitialized_copy...
[oota-llvm.git] / include / llvm / ADT / SmallVector.h
2008-06-30 Dan GohmanUse plain operator new instead of new char[].
2008-05-30 Dan GohmanAdd an operator< for SmallVector.
2008-05-29 Anton KorobeynikovFor PR1338: rename include/llvm/ADT/ilist and friends...
2008-05-19 Bill WendlingRemove warnings about unused parameters and shadowed...
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-04-28 Chris LattnerRemove the SmallVector ctor that converts from a SmallV...
2008-04-28 Chris Lattnerrestore the copy ctor in SmallVector. This fixes serious
2008-04-28 Chris Lattnergeneralize SmallVector copy ctor, there is no requireme...
2008-04-02 David GreeneIterators folloring a SmallVector erased element are...
2008-01-11 Chris Lattneradd operator==/!= to smallvector.
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-08-20 Chris Lattneradd reverse iterators to smallvector
2007-08-12 Reid SpencerChange casts from old style to new style. This helps...
2007-08-10 Chris Lattnermemcpy with zero length is hugely expensive, so avoid...
2007-08-10 Chris Lattnersmall speedup in the case where a smallvector is defaul...
2007-06-29 Dan GohmanAdd an explicit keyword. Thanks Chris!
2007-06-28 Dan GohmanAdd a default parameter to a SmallVector constructor...
2007-05-17 Chris Lattnersilence some "comparison between signed and unsigned...
2007-05-17 Dan GohmanFix some sporadic segfaults that are triggered when...
2007-04-19 Jeff CohenFix some VC++ warnings.
2007-03-05 Jeff CohenThe hack won't work on VS 2005, and it might not be...
2007-03-05 Jeff CohenElminate tabs and improve comments.
2007-03-05 Jeff CohenUnbreak VC++ build.
2007-02-13 Chris Lattnerfix a critical bug in smallvector, where it would destr...
2007-01-31 Chris Lattneradd missing ctor
2006-10-30 Chris Lattneradd a new form of insert.
2006-10-30 Chris LattnerAdd SmallString a (currently) minimal class that adapts...
2006-10-09 Andrew LenharthFix build error in gcc 3.4 and make more this general
2006-10-08 Chris LattnerFix PR897
2006-09-01 Chris Lattneradd a simple reserve method.
2006-08-28 Chris LattnerAdd 2nd form of resize
2006-08-22 Chris Lattneradd resize, move swap out of line
2006-08-22 Chris Lattneradd a bunch more operations, including swap, insert...
2006-08-16 Chris Lattnersilence a warning.
2006-08-16 Chris LattnerBugfixes for smallvector when the element size is small...
2006-08-14 Chris Lattneravoid a warning
2006-08-11 Chris Lattnermove code out of line so that GCC doesn't inline it...
2006-08-11 Chris LattnerSplit SmallVector into SmallVector and SmallVectorImpl...
2006-08-08 Chris Lattnercapacity is a pointer, not a value
2006-08-08 Chris Lattneradd a new assign method
2006-08-08 Chris LattnerAdd ctor that initializes from a range.
2006-08-07 Chris LattnerRemove assertions from the SmallVector class. They...
2006-08-07 Chris LattnerAdd a clear method to SmallVector
2006-08-05 Evan ChengThis causes some random crashes.
2006-07-28 Chris LattnerThe smallvector dtor should destroy the elements.
2006-07-27 Chris LattnerUse std::copy instead of custom loops to take advantage...
2006-07-26 Chris LattnerAdd a new llvm::SmallVector template, which is similar...