Add support for detecting <mach-o/getsect.h> and the getsect() function.
[oota-llvm.git] / unittests / ADT /
2010-07-13 Chandler CarruthSwitch from EXPECT_EQ({true,false, ...) to the more...
2010-07-10 Bill WendlingUse non-bool values for .count.
2010-06-08 Daniel DunbarADT: Add DAGDeltaAlgorithm, which is a DAG minimization...
2010-05-26 Jakob Stoklund OlesenAdd StringRef::compare_numeric and use it to sort Table...
2010-05-13 Daniel DunbarFix const ilist_node::get{Prev,Next}Node() to actually...
2010-05-12 Daniel DunbarADT: Add ilist_node::get{Prev,Next}Node, which return...
2010-04-30 Dan GohmanUpdate BitVectorTest.cpp to stay in sync with SmallBitV...
2010-04-30 Benjamin KramerSmallBitVector: Rework find_first/find_next and tweak...
2010-04-30 Benjamin KramerImplement a read/write operator[] for SmallBitVector...
2010-04-18 Chris Lattnersilence some unused-value warnings.
2010-03-26 Dan GohmanFix SmallVector's insert to handle non-random-access...
2010-03-18 Dan GohmanMake this test more lenient; with SmallVector now using...
2010-03-17 Jeffrey YasskinFix death tests in -Asserts builds.
2010-02-28 John McCallTeach APFloat how to create both QNaNs and SNaNs and...
2010-02-26 John McCallMake APFloat's string-parsing routines a bit safer...
2010-02-11 Jeffrey YasskinFix (harmless) memory leak found by memcheck.
2010-02-10 Benjamin KramerSilence GCC warnings.
2010-02-10 Dan GohmanImplement operators |=, &=, and ^= for SmallBitVector...
2010-02-09 Dale JohannesenDisable unittests/ADT/BitVectorTest on PPC Darwin.
2010-02-03 John McCallMake APInt::countLeadingZerosSlowCase() treat the conte...
2010-01-05 Dan GohmanAdd a SmallBitVector class, which mimics BitVector...
2009-12-31 Benjamin KramerSilence compiler warning.
2009-12-31 Douglas GregorDocument the edit-distance algorithm used in StringRef...
2009-12-24 John McCallImplement support for converting to string at "natural...
2009-12-24 Douglas GregorMove the two definitions of operator<< into namespace...
2009-12-24 Douglas GregorDefine the new operator<< for sets into namespace std...
2009-12-24 John McCallAdd accessors for the largest-magnitude, smallest-magni...
2009-12-21 Eli FriedmanChange StringRef::startswith and StringRef::endswith...
2009-12-03 Daniel DunbarAdd an implementation of the delta debugging algorithm.
2009-11-19 Duncan SandsOnly run this mutex test if threading is enabled. ...
2009-11-19 Benjamin KramerReenable Split2 StringRef test with Apple gcc.
2009-11-17 Daniel Dunbar"XFAIL" the Split2 StringReft test with Apple gcc,...
2009-11-13 Rafael EspindolaDistinguish "a," from "a". The first one splits into...
2009-11-13 Rafael EspindolaSwitch to smallvector. Also fix issue with using unsige...
2009-11-13 Rafael EspindolaAdd a new split method to StringRef that puts the subst...
2009-11-11 Daniel DunbarAdd From arguments to StringRef search functions, and...
2009-11-10 Jeffrey YasskinFix DenseMap iterator constness.
2009-10-27 Chris LattnerType.h doesn't need to #include LLVMContext.h
2009-10-26 Chandler CarruthMove DataTypes.h to include/llvm/System, update all...
2009-10-23 Jeffrey YasskinFix stylistic and documentation problems in ValueMap...
2009-10-22 Jeffrey YasskinTry r84890 again (adding ValueMap<>), now that I've...
2009-10-22 Jeffrey YasskinRevert r84890, which broke the linux build.
2009-10-22 Jeffrey YasskinAdd a ValueMap<ValueOrSubclass*, T> type. ValueMap...
2009-10-13 Duncan SandsPacify the compiler (signed with unsigned comparison...
2009-10-13 Dan GohmanAdd a ceilLogBase2 function to APInt.
2009-09-18 Daniel DunbarFix a few more conversion warnings on 4.0
2009-09-17 Daniel DunbarAnother try at fixing compile warnings on 4.0
2009-09-16 Daniel DunbarAdd StringRef::{rfind, rsplit}
2009-09-14 Daniel DunbarAttempt to fix some 4.0.0 build warnings.
2009-09-06 Daniel DunbarSimplify, now that gtest supports raw_ostream directly.
2009-09-03 Daniel DunbarAdd test for PR4873, which works for me.
2009-08-24 Chris Lattnersplit raw_os_ostream out to its own header and implemen...
2009-08-24 Daniel DunbarUnbreak unit tests.
2009-08-21 Bill WendlingCorrect for recent assert change.
2009-08-21 Erick TryzelaarFix bug with APInt::getBitsNeeded with for base 10...
2009-08-21 Erick TryzelaarAllow '+' to appear in APInt strings, and add more...
2009-08-20 Erick TryzelaarAdd support for including '+' in APFloat strings, more...
2009-08-20 Daniel DunbarFix two APFloat bugs in converting hexadecimal constants.
2009-08-19 Benjamin KramerRemove SmallString::append_*int* unit tests.
2009-08-19 Daniel DunbarAdd SmallVector::{capacity,set_size}.
2009-08-18 Daniel DunbarImprove Triple to recognize the OS in i386-mingw32.
2009-08-18 Daniel DunbarFix pasto in StringRef::count(char)
2009-08-18 Daniel DunbarAdd StringRef::count({char,StringRef})
2009-08-17 Erick TryzelaarWrap unit test death tests in GTEST_HAS_DEATH_TEST
2009-08-17 Erick TryzelaarChange APFloatTest from using ASSERTs to EXPECTs
2009-08-16 Erick TryzelaarModify APFloat to take a StringRef instead of a c string.
2009-08-16 Erick TryzelaarAdd failure tests to APInt unit test.
2009-08-13 Daniel DunbarConvert APint::{fromString,APInt,getBitsNeeded} to...
2009-08-11 Daniel DunbarStringRef: Add find(char) and find(StringRef).
2009-07-30 Daniel DunbarTwine: Use raw_ostream::write_hex, remove unused itohex...
2009-07-30 Daniel DunbarTwine: Provide [u]int{32,64} conversions via implicit...
2009-07-29 Benjamin Kramerfix unittest on platforms with unsigned chars (e.g...
2009-07-29 Daniel DunbarTwines: Support numeric conversion directly (uitostr...
2009-07-26 Daniel DunbarUpdate Triple to use StringRef/Twine based APIs.
2009-07-26 Daniel DunbarAdd StringRef::{slice, split}, two convenient string...
2009-07-25 Jeffrey YasskinAdd a missing ilist_node.h #include to SparseBitVector...
2009-07-24 Daniel DunbarAdd Twine ADT.
2009-07-23 Daniel DunbarConvert StringMap to using StringRef for its APIs.
2009-07-22 Daniel DunbarSupport writing a StringRef to a raw_ostream directly.
2009-07-21 Daniel DunbarAdd StringRef::{substr, startswith}.
2009-07-21 Daniel DunbarAdd StringRef class, with fixes.
2009-07-21 Torok Edwinunbreak unit-tests on gcc-4.4.
2009-07-16 Daniel DunbarAdd SmallString unit test.
2009-07-12 Daniel DunbarClarify a FIXME.
2009-06-30 Dan GohmanReapply 74494, this time removing the conflicting defin...
2009-06-30 Daniel DunbarRevert my intentional breakage.
2009-06-30 Daniel DunbarIntentionally break a unittest to test my buildbot...
2009-06-09 Misha BrukmanReversed order of args in EXPECT_EQ() macros to be...
2009-05-01 Stuart HastingsPrevent looping when DenseSet is abused.
2009-04-25 Chris LattnerFix PR4040: APInt's string constructor is too strict
2009-04-23 Owen AndersonUse the testcase from PR2791.
2009-04-08 Misha Brukman* Fixed calls to APInt ctor to work for negative values...
2009-04-01 Daniel DunbarAdd llvm::Triple class for abstracting access to target...
2009-03-24 Misha BrukmanConverted a1.ll to unittests.
2009-03-19 Misha BrukmanRenamed unittest files to have a consistent {Tt}est...
2009-02-09 Bill WendlingFix comment.
2009-01-27 Torok EdwinAPInt's countLeadingOnes() was broken for negative...
2009-01-19 Nick LewyckyPort this test from dejagnu to unit testing.
2009-01-11 Bill WendlingFix naming of file.
2009-01-10 Bill WendlingAdding unittests for SmallVector. Test by Talin.
next