GCC extensions are no longer used here - update the comment.
[oota-llvm.git] / include / llvm / ADT / SmallVector.h
2010-10-03 Duncan SandsGCC extensions are no longer used here - update the...
2010-10-03 Duncan SandsRemove two uses of the gcc specific 'aligned' attribute...
2010-09-02 John McCallAfter some discussion with djg, teach SmallVector to...
2010-08-26 John McCallSmallVector's growth policies don't like starting from...
2010-08-25 John McCallProvide an explicit specialization of SmallVector at...
2010-06-15 Chris Lattnerdisable SmallVectorImpl's copy constructor. This preve...
2010-06-10 Duncan SandsAdd includes to get ptrdiff_t. This is needed by gcc...
2010-06-08 Benjamin KramerUse realloc instead of malloc+memcpy when growing a...
2010-06-02 Jim Grosbachremove trailing whitespace
2010-04-29 Torok EdwinFix PR6910.
2010-03-26 Dan GohmanFix SmallVector's insert to handle non-random-access...
2010-03-18 Benjamin KramerFix a name clash that was breaking MSVC builds.
2010-03-18 Dan GohmanFix a bug found by inspection; in the __GNUC__ code...
2009-12-17 Chris Lattnertabs -> spaces.
2009-12-17 Steve NaroffFix Windows build breakage...
2009-12-17 Eric ChristopherFix unused variable warning.
2009-12-16 Daniel DunbarFix one more missing this-> to placate that picky clang++.
2009-12-16 Chris Lattnerfix more missing this->'s to placate clang++
2009-12-16 Chris LattnerFix a missing this-> that clang++ notices.
2009-12-16 Chris Lattnernow that libsystem no longer uses SmallVector, we can...
2009-12-16 Chris Lattnerfactor out the grow() method for all pod implementation...
2009-12-16 Chris Lattnerpull destroy_range and uninitialized_copy up to the
2009-12-16 Chris Lattnersink most of the meat in smallvector back from SmallVec...
2009-12-16 Chris Lattnersubstantial refactoring of SmallVector, now most code...
2009-12-15 Chris Lattnera few improvements:
2009-12-15 Chris Lattnerhoist the begin/end/capacity members and a few trivial...
2009-12-15 Chris Lattnerimprove isPodLike to know that all non-class types...
2009-08-27 Gabor GreifClean up the minor mess I caused with removing iterator...
2009-08-19 Daniel DunbarAdd SmallVector::{capacity,set_size}.
2009-05-21 Jay FoadTighten up the asserts in SmallVector::operator[]().
2009-05-21 Jay FoadImplement new SmallVector::data() methods.
2009-04-22 Owen AndersonFix for PR3946, in which SmallVector could behave stran...
2009-04-02 Chris Lattnerfix overflow checks in SmallVector:
2009-03-22 Chris LattnerFix PR3860 by correcting a predicate.
2009-02-20 Misha BrukmanFixed lint errors:
2009-02-18 Dan GohmanAdd explicit keywords.
2009-01-09 Misha BrukmanRemoved trailing whitespace.
2008-12-13 Cedric VenetAdd explicit this-> for some member function in templat...
2008-12-05 Chris Lattneradd a new pop_back_val method which returns the value...
2008-10-16 Dan GohmanImplement a SmallVector insert method that can insert...
2008-09-22 Rafael EspindolaAdd bound checks in SmallVector
2008-08-22 Dan GohmanFix SmallVector's size calculation so that a size of...
2008-08-15 Owen AndersonAdd a value_type typedef to SmallVector, to make it...
2008-07-07 Dan GohmanRemove unnecessary static_casts.
2008-07-01 Seo SanghyeonCompilation fix
2008-06-30 Dan GohmanMake SmallVector's grow use memcpy in common cases
2008-06-30 Dan GohmanUse plain operator new instead of new char[].
2008-05-30 Dan GohmanAdd an operator< for SmallVector.
2008-05-29 Anton KorobeynikovFor PR1338: rename include/llvm/ADT/ilist and friends...
2008-05-19 Bill WendlingRemove warnings about unused parameters and shadowed...
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-04-28 Chris LattnerRemove the SmallVector ctor that converts from a SmallV...
2008-04-28 Chris Lattnerrestore the copy ctor in SmallVector. This fixes serious
2008-04-28 Chris Lattnergeneralize SmallVector copy ctor, there is no requireme...
2008-04-02 David GreeneIterators folloring a SmallVector erased element are...
2008-01-11 Chris Lattneradd operator==/!= to smallvector.
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-08-20 Chris Lattneradd reverse iterators to smallvector
2007-08-12 Reid SpencerChange casts from old style to new style. This helps...
2007-08-10 Chris Lattnermemcpy with zero length is hugely expensive, so avoid...
2007-08-10 Chris Lattnersmall speedup in the case where a smallvector is defaul...
2007-06-29 Dan GohmanAdd an explicit keyword. Thanks Chris!
2007-06-28 Dan GohmanAdd a default parameter to a SmallVector constructor...
2007-05-17 Chris Lattnersilence some "comparison between signed and unsigned...
2007-05-17 Dan GohmanFix some sporadic segfaults that are triggered when...
2007-04-19 Jeff CohenFix some VC++ warnings.
2007-03-05 Jeff CohenThe hack won't work on VS 2005, and it might not be...
2007-03-05 Jeff CohenElminate tabs and improve comments.
2007-03-05 Jeff CohenUnbreak VC++ build.
2007-02-13 Chris Lattnerfix a critical bug in smallvector, where it would destr...
2007-01-31 Chris Lattneradd missing ctor
2006-10-30 Chris Lattneradd a new form of insert.
2006-10-30 Chris LattnerAdd SmallString a (currently) minimal class that adapts...
2006-10-09 Andrew LenharthFix build error in gcc 3.4 and make more this general
2006-10-08 Chris LattnerFix PR897
2006-09-01 Chris Lattneradd a simple reserve method.
2006-08-28 Chris LattnerAdd 2nd form of resize
2006-08-22 Chris Lattneradd resize, move swap out of line
2006-08-22 Chris Lattneradd a bunch more operations, including swap, insert...
2006-08-16 Chris Lattnersilence a warning.
2006-08-16 Chris LattnerBugfixes for smallvector when the element size is small...
2006-08-14 Chris Lattneravoid a warning
2006-08-11 Chris Lattnermove code out of line so that GCC doesn't inline it...
2006-08-11 Chris LattnerSplit SmallVector into SmallVector and SmallVectorImpl...
2006-08-08 Chris Lattnercapacity is a pointer, not a value
2006-08-08 Chris Lattneradd a new assign method
2006-08-08 Chris LattnerAdd ctor that initializes from a range.
2006-08-07 Chris LattnerRemove assertions from the SmallVector class. They...
2006-08-07 Chris LattnerAdd a clear method to SmallVector
2006-08-05 Evan ChengThis causes some random crashes.
2006-07-28 Chris LattnerThe smallvector dtor should destroy the elements.
2006-07-27 Chris LattnerUse std::copy instead of custom loops to take advantage...
2006-07-26 Chris LattnerAdd a new llvm::SmallVector template, which is similar...