summaryrefslogtreecommitdiff
path: root/unittests/ADT/SmallVectorTest.cpp
Commit message (Expand)AuthorAge
* SmallVectorTest: Make the deleted member functions private to help MSVC users.David Blaikie2014-06-11
* SmallVectorTest.cpp: Use LLVM_DELETED_FUNCTION.NAKAMURA Takumi2014-06-10
* SmallVector: support resize(N) with move-only typesDavid Blaikie2014-06-09
* SmallVector: Improve test coverage for insert with repetitionDavid Blaikie2014-06-08
* SmallVector: More movable improvements - don't copy elements to make space wh...David Blaikie2014-06-08
* SmallVector: Move, don't copy, elements to make space for an insertion.David Blaikie2014-06-08
* SmallVectorTest: Remove some more robust checks added in r210429 since they c...David Blaikie2014-06-08
* Fix some more moving-from-moved-from objects issues in SmallVectorDavid Blaikie2014-06-08
* Ensure SmallVector::insert doesn't overwrite the last element in the range wi...David Blaikie2014-06-08
* Fix a use of uninitialized memory in SmallVector's move-assignment operator.Douglas Gregor2014-04-30
* Revert "Clean up SmallString a bit"David Blaikie2014-03-09
* Clean up SmallString a bitDavid Blaikie2014-03-09
* Sort the #include lines for unittest/...Chandler Carruth2012-12-04
* Move the SmallVector unit tests to be type-parameterized so that we canChandler Carruth2012-07-30
* Bring the return value of SmallVector::insert in line with std::vector::insert.Benjamin Kramer2012-06-17
* SmallVector: return a valid iterator for the rare case of inserting an empty ...Benjamin Kramer2012-06-17
* SmallVector: Don't rely on having an assignment operator around in push_back ...Benjamin Kramer2012-04-29
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* Fix a subtle issue in SmallVector. The following code did not work as expected:Owen Anderson2011-07-06
* Switch attribute macros to use 'LLVM_' as a prefix. We retain the old namesChandler Carruth2010-10-23
* Silence 'unused' warning.Bill Wendling2010-08-19
* Fix SmallVector's insert to handle non-random-access iterators.Dan Gohman2010-03-26
* Make this test more lenient; with SmallVector now using actuallyDan Gohman2010-03-18
* Add SmallVector::{capacity,set_size}.Daniel Dunbar2009-08-19
* Clarify a FIXME.Daniel Dunbar2009-07-12
* Use the testcase from PR2791.Owen Anderson2009-04-23
* Fix naming of file.Bill Wendling2009-01-11
* Adding unittests for SmallVector. Test by Talin.Bill Wendling2009-01-10