aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/SmallVector.h
Commit message (Expand)AuthorAgeFilesLines
* Tighten up the asserts in SmallVector::operator[]().Jay Foad2009-05-211-4/+2
* Implement new SmallVector::data() methods.Jay Foad2009-05-211-0/+10
* Fix for PR3946, in which SmallVector could behave strangely in corner cases.Owen Anderson2009-04-221-2/+2
* fix overflow checks in SmallVector:Chris Lattner2009-04-021-4/+4
* Fix PR3860 by correcting a predicate.Chris Lattner2009-03-221-8/+10
* Fixed lint errors:Misha Brukman2009-02-201-1/+1
* Add explicit keywords.Dan Gohman2009-02-181-1/+1
* Removed trailing whitespace.Misha Brukman2009-01-091-76/+76
* Add explicit this-> for some member function in templated base class.Cédric Venet2008-12-131-3/+3
* add a new pop_back_val method which returns the value popped. This isChris Lattner2008-12-051-0/+6
* Implement a SmallVector insert method that can insert multipleDan Gohman2008-10-161-0/+62
* Add bound checks in SmallVectorRafael Espindola2008-09-221-0/+5
* Fix SmallVector's size calculation so that a size of 0 isDan Gohman2008-08-221-1/+1
* Add a value_type typedef to SmallVector, to make it more compatible with STL ...Owen Anderson2008-08-151-0/+1
* Remove unnecessary static_casts.Dan Gohman2008-07-071-2/+2
* Compilation fixSeo Sanghyeon2008-07-011-0/+1
* Make SmallVector's grow use memcpy in common casesDan Gohman2008-06-301-1/+6
* Use plain operator new instead of new char[].Dan Gohman2008-06-301-5/+5
* Add an operator< for SmallVector.Dan Gohman2008-05-301-0/+5
* For PR1338: rename include/llvm/ADT/ilist and friends to end with ".h"Anton Korobeynikov2008-05-291-1/+1
* Remove warnings about unused parameters and shadowed variables.Bill Wendling2008-05-191-2/+2
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-051-17/+20
* Remove the SmallVector ctor that converts from a SmallVectorImpl. ThisChris Lattner2008-04-281-6/+1
* restore the copy ctor in SmallVector. This fixes seriousChris Lattner2008-04-281-0/+5
* generalize SmallVector copy ctor, there is no requirement forChris Lattner2008-04-281-1/+2
* Iterators folloring a SmallVector erased element are invalidated soDavid Greene2008-04-021-2/+6
* add operator==/!= to smallvector.Chris Lattner2008-01-111-0/+10
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* add reverse iterators to smallvectorChris Lattner2007-08-201-3/+14
* Change casts from old style to new style. This helps document the detailsReid Spencer2007-08-121-4/+7
* memcpy with zero length is hugely expensive, so avoid it. This speeds up coa...Chris Lattner2007-08-101-1/+5
* small speedup in the case where a smallvector is default ctor'd fromChris Lattner2007-08-101-1/+2
* It's not necessary to do rounding for alloca operations when the requestedDan Gohman2007-07-181-0/+485