| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement a SmallVector insert method that can insert multiple | Dan Gohman | 2008-10-16 | 1 | -0/+62 |
* | Add bound checks in SmallVector | Rafael Espindola | 2008-09-22 | 1 | -0/+5 |
* | Fix SmallVector's size calculation so that a size of 0 is | Dan Gohman | 2008-08-22 | 1 | -1/+1 |
* | Add a value_type typedef to SmallVector, to make it more compatible with STL ... | Owen Anderson | 2008-08-15 | 1 | -0/+1 |
* | Remove unnecessary static_casts. | Dan Gohman | 2008-07-07 | 1 | -2/+2 |
* | Compilation fix | Seo Sanghyeon | 2008-07-01 | 1 | -0/+1 |
* | Make SmallVector's grow use memcpy in common cases | Dan Gohman | 2008-06-30 | 1 | -1/+6 |
* | Use plain operator new instead of new char[]. | Dan Gohman | 2008-06-30 | 1 | -5/+5 |
* | Add an operator< for SmallVector. | Dan Gohman | 2008-05-30 | 1 | -0/+5 |
* | For PR1338: rename include/llvm/ADT/ilist and friends to end with ".h" | Anton Korobeynikov | 2008-05-29 | 1 | -1/+1 |
* | Remove warnings about unused parameters and shadowed variables. | Bill Wendling | 2008-05-19 | 1 | -2/+2 |
* | Fix more -Wshorten-64-to-32 warnings. | Evan Cheng | 2008-05-05 | 1 | -17/+20 |
* | Remove the SmallVector ctor that converts from a SmallVectorImpl. This | Chris Lattner | 2008-04-28 | 1 | -6/+1 |
* | restore the copy ctor in SmallVector. This fixes serious | Chris Lattner | 2008-04-28 | 1 | -0/+5 |
* | generalize SmallVector copy ctor, there is no requirement for | Chris Lattner | 2008-04-28 | 1 | -1/+2 |
* | Iterators folloring a SmallVector erased element are invalidated so | David Greene | 2008-04-02 | 1 | -2/+6 |
* | add operator==/!= to smallvector. | Chris Lattner | 2008-01-11 | 1 | -0/+10 |
* | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | add reverse iterators to smallvector | Chris Lattner | 2007-08-20 | 1 | -3/+14 |
* | Change casts from old style to new style. This helps document the details | Reid Spencer | 2007-08-12 | 1 | -4/+7 |
* | memcpy with zero length is hugely expensive, so avoid it. This speeds up coa... | Chris Lattner | 2007-08-10 | 1 | -1/+5 |
* | small speedup in the case where a smallvector is default ctor'd from | Chris Lattner | 2007-08-10 | 1 | -1/+2 |
* | Add an explicit keyword. Thanks Chris! | Dan Gohman | 2007-06-29 | 1 | -1/+1 |
* | Add a default parameter to a SmallVector constructor to allow it to | Dan Gohman | 2007-06-28 | 1 | -1/+1 |
* | 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 |