| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | silence some "comparison between signed and unsigned integer expressions" | Chris Lattner | 2007-05-17 | 1 | -3/+3 |
* | Fix some sporadic segfaults that are triggered when SmallVector's heap | Dan Gohman | 2007-05-17 | 1 | -3/+3 |
* | Fix some VC++ warnings. | Jeff Cohen | 2007-04-19 | 1 | -4/+4 |
* | The hack won't work on VS 2005, and it might not be needed anyway. | Jeff Cohen | 2007-03-05 | 1 | -1/+5 |
* | Elminate tabs and improve comments. | Jeff Cohen | 2007-03-05 | 1 | -7/+8 |
* | Unbreak VC++ build. | Jeff Cohen | 2007-03-05 | 1 | -0/+19 |
* | fix a critical bug in smallvector, where it would destroy elements that are | Chris Lattner | 2007-02-13 | 1 | -1/+1 |
* | add missing ctor | Chris Lattner | 2007-01-31 | 1 | -0/+7 |
* | add a new form of insert. | Chris Lattner | 2006-10-30 | 1 | -1/+48 |
* | Add SmallString a (currently) minimal class that adapts SmallVector to be | Chris Lattner | 2006-10-30 | 1 | -0/+1 |
* | Fix build error in gcc 3.4 and make more this general | Andrew Lenharth | 2006-10-09 | 1 | -1/+1 |
* | Fix PR897 | Chris Lattner | 2006-10-08 | 1 | -0/+5 |
* | add a simple reserve method. | Chris Lattner | 2006-09-01 | 1 | -0/+5 |
* | Add 2nd form of resize | Chris Lattner | 2006-08-28 | 1 | -0/+12 |
* | add resize, move swap out of line | Chris Lattner | 2006-08-22 | 1 | -36/+56 |
* | add a bunch more operations, including swap, insert, erase, front(), and | Chris Lattner | 2006-08-22 | 1 | -13/+115 |
* | silence a warning. | Chris Lattner | 2006-08-16 | 1 | -0/+1 |
* | Bugfixes for smallvector when the element size is small and N is small. | Chris Lattner | 2006-08-16 | 1 | -4/+17 |
* | avoid a warning | Chris Lattner | 2006-08-14 | 1 | -1/+1 |
* | move code out of line so that GCC doesn't inline it at -O3 | Chris Lattner | 2006-08-11 | 1 | -61/+68 |
* | Split SmallVector into SmallVector and SmallVectorImpl, which allows us to | Chris Lattner | 2006-08-11 | 1 | -40/+45 |
* | capacity is a pointer, not a value | Chris Lattner | 2006-08-08 | 1 | -1/+1 |
* | add a new assign method | Chris Lattner | 2006-08-08 | 1 | -0/+9 |
* | Add ctor that initializes from a range. | Chris Lattner | 2006-08-08 | 1 | -0/+6 |
* | Remove assertions from the SmallVector class. They slow down clients of | Chris Lattner | 2006-08-07 | 1 | -6/+0 |
* | Add a clear method to SmallVector | Chris Lattner | 2006-08-07 | 1 | -0/+7 |
* | This causes some random crashes. | Evan Cheng | 2006-08-05 | 1 | -1/+1 |
* | The smallvector dtor should destroy the elements. | Chris Lattner | 2006-07-28 | 1 | -2/+12 |
* | Use std::copy instead of custom loops to take advantage of STL optimizations. | Chris Lattner | 2006-07-27 | 1 | -5/+19 |
* | Add a new llvm::SmallVector template, which is similar to the vector class, but | Chris Lattner | 2006-07-26 | 1 | -0/+196 |