| Commit message (Expand) | Author | Age | Files | Lines |
* | Add SmallVector::{capacity,set_size}. | Daniel Dunbar | 2009-08-19 | 1 | -2/+20 |
* | Tighten up the asserts in SmallVector::operator[](). | Jay Foad | 2009-05-21 | 1 | -4/+2 |
* | Implement new SmallVector::data() methods. | Jay Foad | 2009-05-21 | 1 | -0/+10 |
* | Fix for PR3946, in which SmallVector could behave strangely in corner cases. | Owen Anderson | 2009-04-22 | 1 | -2/+2 |
* | fix overflow checks in SmallVector: | Chris Lattner | 2009-04-02 | 1 | -4/+4 |
* | Fix PR3860 by correcting a predicate. | Chris Lattner | 2009-03-22 | 1 | -8/+10 |
* | Fixed lint errors: | Misha Brukman | 2009-02-20 | 1 | -1/+1 |
* | Add explicit keywords. | Dan Gohman | 2009-02-18 | 1 | -1/+1 |
* | Removed trailing whitespace. | Misha Brukman | 2009-01-09 | 1 | -76/+76 |
* | Add explicit this-> for some member function in templated base class. | Cédric Venet | 2008-12-13 | 1 | -3/+3 |
* | add a new pop_back_val method which returns the value popped. This is | Chris Lattner | 2008-12-05 | 1 | -0/+6 |
* | 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 |
* | It's not necessary to do rounding for alloca operations when the requested | Dan Gohman | 2007-07-18 | 1 | -0/+485 |