[lib/Fuzzer] remove the -dfsan=1 flag, just use -use_traces=1 (w/ or w/o dfsan)
[oota-llvm.git] / unittests / ADT /
2015-05-08 John Brawn[ARM] Reject invalid -march values
2015-05-05 Ismail DonmezFix regression in parsing armv{6,7}hl- triples. These...
2015-05-01 Douglas KatzmanMove unit test into anonymous namespace as per convention.
2015-04-30 Douglas KatzmanExhaustively test all triples in TripleTest.
2015-04-29 Douglas KatzmanNew architecture name - 'sparcel' for Sparc little...
2015-04-24 Pawel BylicaFix APInt long division algorithm
2015-04-22 Yaron KerenAnother test to exercise APInt divide step D6.
2015-04-11 Alexander KornienkoUse 'override/final' instead of 'virtual' for overridde...
2015-03-26 Derek SchuffDefault to armv7 cpu for NaCl when march=arm
2015-03-26 Yaron KerenFix rare case where APInt divide algorithm applied...
2015-03-25 Benjamin Kramer[APInt] Add an isSplat helper and use it in some places.
2015-03-25 Chandler Carruth[ADT] Teach MapVector to support a swap member. Will...
2015-03-17 Yaron KerenTeach Twine to support SmallString.
2015-03-16 Gabor Horvath[llvm] Replacing asserts with static_asserts where...
2015-03-09 Ed SchoutenAdd support for Nuxi CloudABI.
2015-03-09 Benjamin KramerDrop the hacks used for partial C99 math libraries.
2015-03-04 David BlaikieExplicitly default ilistTest::Node's copy constructor
2015-03-04 David BlaikieExplicitly default DenseMapTest::CtorTest::operator=
2015-03-03 David BlaikieRevert "Remove the explicit SDNodeIterator::operator...
2015-03-03 David BlaikieRemove the explicit SDNodeIterator::operator= in favor...
2015-03-03 David BlaikieDeltaAlgorithm: Provide protected default copy ctor...
2015-03-03 David BlaikieRemove no-op dtor so that use of the implicit copy...
2015-03-03 David BlaikieRemove explicit copy ctor in favor of the default so...
2015-03-02 Benjamin KramerSmallVector: Allow initialization and assignment from...
2015-03-01 Benjamin KramerArrayRef: Remove the equals helper with many arguments.
2015-02-17 Aaron BallmanCorrecting the ArrayRef test to not cause use-after...
2015-02-17 Aaron BallmanAdding additional tests to ensure that initializer...
2015-02-17 Aaron BallmanAddressing a post-commit review comment suggesting...
2015-02-17 Aaron BallmanI believe we no longer require LLVM_HAS_INITIALIZER_LIS...
2015-02-17 NAKAMURA TakumiADT/PointerIntPairTest.cpp: Prune obsolete #if. We...
2015-02-15 Aaron BallmanRemoving LLVM_DELETED_FUNCTION, as MSVC 2012 was the...
2015-02-09 Duncan P. N. Exon... ADT: Allow up to 18 arguments in hash_combine()
2015-02-07 Benjamin KramerSmallVector: Move emplace_back to SmallVectorImpl.
2015-02-05 Duncan P. N. Exon... ADT: Add int64_t interoperability to APSInt
2015-01-26 Joerg SonnenbergerThe canonical CPU variant for ARM according to config...
2015-01-23 Lang Hames[ADT] Add move operations to SmallVector<T,N> from...
2015-01-19 Michael Gottesman[tinyptrvector] Add in a MutableArrayRef implicit conve...
2015-01-14 Richard TrieuDisable -Wunknown-pragmas in a test so that Clang witho...
2015-01-13 Aaron BallmanSilence warnings about unknown pragmas for compilers...
2015-01-13 Richard TrieuDisable a warning for self move since the test is check...
2015-01-04 Lang Hames[APFloat][ADT] Fix sign handling logic for FMA results...
2015-01-01 Chandler CarruthRevert r225053: Add an ArrayRef upcasting constructor...
2014-12-31 Michael GottesmanAdd 2x constructors for TinyPtrVector, one that takes...
2014-12-31 Michael GottesmanAdd a SmallMapVector class that is a MapVector with...
2014-12-31 Michael GottesmanAdd an ArrayRef upcasting constructor from ArrayRef...
2014-12-03 Aaron BallmanSilencing several "multiple copy constructors" warnings...
2014-12-03 Duncan P. N. Exon... ADT: Add SmallVector<>::emplace_back()
2014-11-20 Michael IlsemanCompilation test for PostOrderIterator.
2014-11-19 Lang Hames[ADT] Fix PR20728 - Incorrect APFloat::fusedMultiplyAdd...
2014-11-19 David BlaikieRemove StringMap::GetOrCreateValue in favor of StringMa...
2014-11-14 David BlaikieStringMap: Test and finish off supporting perfectly...
2014-11-12 David BlaikieEnsure function_refs are copyable even from non-const...
2014-10-27 Michael GottesmanAdd MapVector::rbegin(), MapVector::rend() to completme...
2014-10-19 Lang Hames[ADT] Add a 'find_as' operation to DenseSet.
2014-10-10 Chandler Carruth[ADT] Add an (ADL-friendly) abs free function for APFlo...
2014-10-10 Matt ArsenaultAdd minnum / maxnum to APFloat
2014-10-10 Chandler Carruth[ADT] Replace the logb implementation with the simpler...
2014-10-10 Chandler Carruth[ADT] Add the scalbn function for APFloat.
2014-10-10 Chandler Carruth[ADT] Implement the 'logb' functionality for APFloat...
2014-10-09 Chandler Carruth[ADT] Add basic operator overloads for arithmetic to...
2014-10-07 Kaelyn TakataAdd return value and negative checks to MapVector:...
2014-10-07 Kaelyn TakataAdd size_t MapVector::erase(KeyT) similar to the one...
2014-10-01 David BlaikieUpdate test name to match changes made in r218783
2014-10-01 David BlaikieAdd an immovable type to test Optional<T>::emplace...
2014-10-01 NAKAMURA TakumiADTTests/OptionalTest.cpp: Use LLVM_DELETED_FUNCTION.
2014-10-01 Jordan RoseAdd an emplace(...) method to llvm::Optional<T>.
2014-09-29 Jordan RoseAdd getValueOr to llvm::Optional<T>.
2014-09-19 Matt ArsenaultAdd hsail and amdil64 to Triple
2014-09-15 Ed MasteAdd unit test for r217454
2014-08-31 David BlaikieAdd some negative (and positive) static_assert checks...
2014-08-30 Craig TopperAdd a test for converting ArrayRef<T *> to ArrayRef...
2014-08-27 Craig TopperSimplify creation of a bunch of ArrayRefs by using...
2014-08-19 Duncan P. N. Exon... ADT: Unit test for ArrayRef::equals change in r215986
2014-08-12 David BlaikieFix -Wsign-compare warnings
2014-08-12 Reid KlecknerAPInt: Make self-move-assignment a no-op to fix stage3...
2014-08-09 Saleem AbdulrasoolADT: remove MinGW32 and Cygwin OSType enum
2014-08-04 Andrew TrickFix SmallDenseMap assignment operator.
2014-07-27 Chandler Carruth[ADT] Add a remarkbly useful little helper routine...
2014-07-15 Duncan P. N. Exon... ADT: Add MapVector::remove_if
2014-07-15 Duncan P. N. Exon... ADT: Fix MapVector::erase()
2014-07-11 Argyrios KyrtzidisMove the API and implementation of clang::driver::getAR...
2014-07-05 David MajnemerADT: Add a drop_back() helper to ArrayRef
2014-06-23 David BlaikieRecommit 211309 (StringMap::insert), reverted in 211328...
2014-06-20 David BlaikieFix some -Wsign-compare fallout from changing container...
2014-06-20 Rafael EspindolaRevert "Add StringMap::insert(pair) consistent with...
2014-06-19 David BlaikieAdd StringMap::insert(pair) consistent with the standar...
2014-06-19 Alp TokerRemove OwningPtr.h and associated tests
2014-06-11 David BlaikieSmallVectorTest: Make the deleted member functions...
2014-06-11 Craig TopperConvert StringMapEntry::Create to use StringRef instead...
2014-06-10 NAKAMURA TakumiSmallVectorTest.cpp: Use LLVM_DELETED_FUNCTION.
2014-06-09 David BlaikieSmallVector: support resize(N) with move-only types
2014-06-08 Craig Topper[C++11] Use 'nullptr'.
2014-06-08 David BlaikieSmallVector: Improve test coverage for insert with...
2014-06-08 David BlaikieSmallVector: More movable improvements - don't copy...
2014-06-08 David BlaikieSmallVector: Move, don't copy, elements to make space...
2014-06-08 David BlaikieSmallVectorTest: Remove some more robust checks added...
2014-06-08 David BlaikieFix some more moving-from-moved-from objects issues...
2014-06-08 Stephen CanonAPFloat: x - NaN needs to flip the signbit of NaN when...
2014-06-08 David BlaikieEnsure SmallVector::insert doesn't overwrite the last...
2014-05-09 David BlaikieRemove use of = default/= delete as they're unsupported...
next