| Commit message (Expand) | Author | Age | Files | Lines |
| * | [ADT] Update SmallVectorTest.EmplaceBack tests after rL356312 | Fangrui Song | 2019-03-26 | 1 | -36/+42 |
| * | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
| * | [ADT] Don't use __used__ attribute on struct members in unit test | Francis Ricci | 2017-06-12 | 1 | -10/+10 |
| * | [ADT] Use LLVM_ATTRIBUTE_USED instead of __attribute__ for unit test | Francis Ricci | 2017-06-11 | 1 | -5/+5 |
| * | [ADT] Suppress unused attribute warning in unit test | Francis Ricci | 2017-06-11 | 1 | -5/+5 |
| * | [SmallVector] Reinstate the typedefs. | Davide Italiano | 2017-06-10 | 1 | -0/+3 |
| * | [SmallVector] Remove unused typedefs, spotted by GCC 7. NFCI. | Davide Italiano | 2017-06-10 | 1 | -3/+0 |
| * | [ADT] Make iterable SmallVector template overrides more specific | Francis Ricci | 2017-06-09 | 1 | -0/+61 |
| * | Re-sort #include lines for unittests. This uses a slightly modified | Chandler Carruth | 2017-06-06 | 1 | -1/+1 |
| * | Tidy up a bit of r304516, use SmallVector::assign rather than for loop | David Blaikie | 2017-06-02 | 1 | -0/+10 |
| * | Revert "Fix Clang-tidy modernize-deprecated-headers warnings in remaining fil... | Duncan P. N. Exon Smith | 2016-04-05 | 1 | -11/+7 |
| * | Fix Clang-tidy modernize-deprecated-headers warnings in remaining files; othe... | Eugene Zelenko | 2016-04-05 | 1 | -7/+11 |
| * | [ADT] C++11ify SmallVector::erase's arguments from iterator to const_iterator | David Blaikie | 2016-03-24 | 1 | -2/+4 |
| * | Use 'override/final' instead of 'virtual' for overridden methods | Alexander Kornienko | 2015-04-11 | 1 | -4/+1 |
| * | SmallVector: Allow initialization and assignment from initializer_list. | Benjamin Kramer | 2015-03-02 | 1 | -0/+19 |
| * | Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requirin... | Aaron Ballman | 2015-02-15 | 1 | -6/+6 |
| * | SmallVector: Move emplace_back to SmallVectorImpl. | Benjamin Kramer | 2015-02-07 | 1 | -0/+8 |
| * | [ADT] Add move operations to SmallVector<T,N> from SmallVectorImpl<T>. | Lang Hames | 2015-01-23 | 1 | -6/+75 |
| * | Silencing several "multiple copy constructors" warnings from MSVC; NFC. | Aaron Ballman | 2014-12-03 | 1 | -1/+0 |
| * | ADT: Add SmallVector<>::emplace_back() | Duncan P. N. Exon Smith | 2014-12-03 | 1 | -0/+131 |
| * | SmallVectorTest: Make the deleted member functions private to help MSVC users. | David Blaikie | 2014-06-11 | 1 | -0/+1 |
| * | SmallVectorTest.cpp: Use LLVM_DELETED_FUNCTION. | NAKAMURA Takumi | 2014-06-10 | 1 | -2/+2 |
| * | SmallVector: support resize(N) with move-only types | David Blaikie | 2014-06-09 | 1 | -4/+30 |
| * | SmallVector: Improve test coverage for insert with repetition | David Blaikie | 2014-06-08 | 1 | -22/+18 |
| * | SmallVector: More movable improvements - don't copy elements to make space wh... | David Blaikie | 2014-06-08 | 1 | -13/+86 |
| * | SmallVector: Move, don't copy, elements to make space for an insertion. | David Blaikie | 2014-06-08 | 1 | -0/+38 |
| * | SmallVectorTest: Remove some more robust checks added in r210429 since they c... | David Blaikie | 2014-06-08 | 1 | -6/+0 |
| * | Fix some more moving-from-moved-from objects issues in SmallVector | David Blaikie | 2014-06-08 | 1 | -0/+18 |
| * | Ensure SmallVector::insert doesn't overwrite the last element in the range wi... | David Blaikie | 2014-06-08 | 1 | -0/+22 |
| * | Fix a use of uninitialized memory in SmallVector's move-assignment operator. | Douglas Gregor | 2014-04-30 | 1 | -9/+54 |
| * | Revert "Clean up SmallString a bit" | David Blaikie | 2014-03-09 | 1 | -11/+0 |
| * | Clean up SmallString a bit | David Blaikie | 2014-03-09 | 1 | -0/+11 |
| * | Sort the #include lines for unittest/... | Chandler Carruth | 2012-12-04 | 1 | -2/+2 |
| * | Move the SmallVector unit tests to be type-parameterized so that we can | Chandler Carruth | 2012-07-30 | 1 | -149/+176 |
| * | Bring the return value of SmallVector::insert in line with std::vector::insert. | Benjamin Kramer | 2012-06-17 | 1 | -4/+30 |
| * | SmallVector: return a valid iterator for the rare case of inserting an empty ... | Benjamin Kramer | 2012-06-17 | 1 | -0/+7 |
| * | SmallVector: Don't rely on having an assignment operator around in push_back ... | Benjamin Kramer | 2012-04-29 | 1 | -0/+13 |
| * | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -1/+1 |
| * | Fix a subtle issue in SmallVector. The following code did not work as expected: | Owen Anderson | 2011-07-06 | 1 | -21/+27 |
| * | Switch attribute macros to use 'LLVM_' as a prefix. We retain the old names | Chandler Carruth | 2010-10-23 | 1 | -1/+1 |
| * | Silence 'unused' warning. | Bill Wendling | 2010-08-19 | 1 | -1/+3 |
| * | Fix SmallVector's insert to handle non-random-access iterators. | Dan Gohman | 2010-03-26 | 1 | -0/+6 |
| * | Make this test more lenient; with SmallVector now using actually | Dan Gohman | 2010-03-18 | 1 | -1/+1 |
| * | Add SmallVector::{capacity,set_size}. | Daniel Dunbar | 2009-08-19 | 1 | -0/+18 |
| * | Clarify a FIXME. | Daniel Dunbar | 2009-07-12 | 1 | -4/+5 |
| * | Use the testcase from PR2791. | Owen Anderson | 2009-04-23 | 1 | -3/+3 |
| * | Fix naming of file. | Bill Wendling | 2009-01-11 | 1 | -1/+1 |
| * | Adding unittests for SmallVector. Test by Talin. | Bill Wendling | 2009-01-10 | 1 | -0/+383 |