| Age | Commit message (Expand) | Author |
| 2007-08-20 | add reverse iterators to smallvector | Chris Lattner |
| 2007-08-12 | Change casts from old style to new style. This helps document the details | Reid Spencer |
| 2007-08-10 | memcpy with zero length is hugely expensive, so avoid it. This speeds up coa... | Chris Lattner |
| 2007-08-10 | small speedup in the case where a smallvector is default ctor'd from | Chris Lattner |
| 2007-06-29 | Add an explicit keyword. Thanks Chris! | Dan Gohman |
| 2007-06-28 | Add a default parameter to a SmallVector constructor to allow it to | Dan Gohman |
| 2007-05-17 | silence some "comparison between signed and unsigned integer expressions" | Chris Lattner |
| 2007-05-17 | Fix some sporadic segfaults that are triggered when SmallVector's heap | Dan Gohman |
| 2007-04-19 | Fix some VC++ warnings. | Jeff Cohen |
| 2007-03-05 | The hack won't work on VS 2005, and it might not be needed anyway. | Jeff Cohen |
| 2007-03-05 | Elminate tabs and improve comments. | Jeff Cohen |
| 2007-03-05 | Unbreak VC++ build. | Jeff Cohen |
| 2007-02-13 | fix a critical bug in smallvector, where it would destroy elements that are | Chris Lattner |
| 2007-01-31 | add missing ctor | Chris Lattner |
| 2006-10-30 | add a new form of insert. | Chris Lattner |
| 2006-10-30 | Add SmallString a (currently) minimal class that adapts SmallVector to be | Chris Lattner |
| 2006-10-09 | Fix build error in gcc 3.4 and make more this general | Andrew Lenharth |
| 2006-10-08 | Fix PR897 | Chris Lattner |
| 2006-09-01 | add a simple reserve method. | Chris Lattner |
| 2006-08-28 | Add 2nd form of resize | Chris Lattner |
| 2006-08-22 | add resize, move swap out of line | Chris Lattner |
| 2006-08-22 | add a bunch more operations, including swap, insert, erase, front(), and | Chris Lattner |
| 2006-08-16 | silence a warning. | Chris Lattner |
| 2006-08-16 | Bugfixes for smallvector when the element size is small and N is small. | Chris Lattner |
| 2006-08-14 | avoid a warning | Chris Lattner |
| 2006-08-11 | move code out of line so that GCC doesn't inline it at -O3 | Chris Lattner |
| 2006-08-11 | Split SmallVector into SmallVector and SmallVectorImpl, which allows us to | Chris Lattner |
| 2006-08-08 | capacity is a pointer, not a value | Chris Lattner |
| 2006-08-08 | add a new assign method | Chris Lattner |
| 2006-08-08 | Add ctor that initializes from a range. | Chris Lattner |
| 2006-08-07 | Remove assertions from the SmallVector class. They slow down clients of | Chris Lattner |
| 2006-08-07 | Add a clear method to SmallVector | Chris Lattner |
| 2006-08-05 | This causes some random crashes. | Evan Cheng |
| 2006-07-28 | The smallvector dtor should destroy the elements. | Chris Lattner |
| 2006-07-27 | Use std::copy instead of custom loops to take advantage of STL optimizations. | Chris Lattner |
| 2006-07-26 | Add a new llvm::SmallVector template, which is similar to the vector class, but | Chris Lattner |