aboutsummaryrefslogtreecommitdiff
path: root/unittests/ADT
AgeCommit message (Expand)Author
2012-01-24Additional methods for SmallString.Talin
2012-01-17Add portable bit mask operations to BitVector.Jakob Stoklund Olesen
2011-12-22Some unittests for APInt rotates; patch by Cameron McInally.Eli Friedman
2011-12-17As Doug pointed out (and I really should know), it is perfectly easy toChandler Carruth
2011-12-16APInt: update asserts for base-36Dylan Noblesmith
2011-12-16Put the '*' in the right place in the unit test. Forgot to fix up thisChandler Carruth
2011-12-16Add a generic collection of class templates to ADT for buildingChandler Carruth
2011-11-26Fix APFloat::convert so that it handles narrowing conversions correctly; itEli Friedman
2011-10-15Add a bad char heuristic to StringRef::find.Benjamin Kramer
2011-10-12Attempt to fix MSVC build.Eli Friedman
2011-10-12Fix APFloat::getLargest so that it actually returns the correct value. Found...Eli Friedman
2011-10-07Fix APInt::operator*= so that it computes the correct result for large intege...Eli Friedman
2011-09-30Fix a bug in compare_numeric().Jakob Stoklund Olesen
2011-09-14Add APInt support for converting to/from hexatridecimal stringsDouglas Gregor
2011-08-29Fix a test that wasn't testing the right thing.Matt Beaumont-Gay
2011-07-29Avoid undefined behaviour if somehow NUM_GRAPHS equals 2^32 (orDuncan Sands
2011-07-29Remove extra semicolon.Jakub Staszak
2011-07-28Use unsigned rather than uint16_t in case anyone feels like testingDuncan Sands
2011-07-28Check an additional property specific to the way LLVMDuncan Sands
2011-07-28Add a unittest for the simply connected components (SCC) iterator class.Duncan Sands
2011-07-27Remove some code that is no longer needed now that googletest knows howJay Foad
2011-07-24Add Twine support for characters, and switch twine to use a union internallyChris Lattner
2011-07-18Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future a...Jeffrey Yasskin
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-07-15Add an APFloat::convertToInt(APSInt) function that automatically manages theJeffrey Yasskin
2011-07-14The key of a StringMap can contain nul's in it, so having first() returnChris Lattner
2011-07-06Fix a subtle issue in SmallVector. The following code did not work as expected:Owen Anderson
2011-06-15unittests: add test for APInt::toString()Dylan Noblesmith
2011-06-15Try fixing http://google1.osuosl.org:8011/builders/clang-i686-freebsd/builds/...Argyrios Kyrtzidis
2011-06-15Add unit tests for ADT/PackedVectorArgyrios Kyrtzidis
2011-04-28Remove bounded StringRef::compare() since nothing but Clang SA was using it a...Lenny Maiorani
2011-04-15Implements StringRef::compare with bounds. It is behaves similarly to strncmp...Lenny Maiorani
2011-03-30Avoid turning a floating point division with a constant power of two into a d...Benjamin Kramer
2011-03-30Add APFloat::getExactInverse.Benjamin Kramer
2011-03-17Add an argument to APInt's magic udiv calculation to specify the number of bi...Benjamin Kramer
2011-02-21The signed version of our "magic number" computation for the integer approxim...Cameron Zwarich
2011-02-03Part of this test is invariant inside the inner loop - move it outsideDuncan Sands
2011-02-02Remove NoVendor and NoOS, added in commit 123990, from Triple. While itDuncan Sands
2011-01-27Don't infinitely recurse! Patch by Marius Wachtler!Chris Lattner
2011-01-21Clang was not parsing target triples involving EABI and was generating wrong ...Renato Golin
2010-12-21Add ADT/IntEqClasses.h as a light-weight implementation of EquivalenceClasses.h.Jakob Stoklund Olesen
2010-12-17Add more checks to IntervalMapOverlaps::advance() to ensure that advanceTo seesJakob Stoklund Olesen
2010-12-17It is allowed to call IntervalMap::const_iterator::advanceTo() with a key thatJakob Stoklund Olesen
2010-12-17Fix crash when IntervalMapOverlaps::advanceTo moves past the last overlap.Jakob Stoklund Olesen
2010-12-17Complete tests for IntervalMapOverlaps.Jakob Stoklund Olesen
2010-12-16Add basic test exposing many bugs.Jakob Stoklund Olesen
2010-12-03Add IntervalMap::iterator::set{Start,Stop,Value} methods that allow limitedJakob Stoklund Olesen
2010-12-01Support/ADT/Twine: Add toNullTerminatedStringRef.Michael J. Spencer
2010-12-01PR5207: Rename overloaded APInt methods set(), clear(), flip() toJay Foad
2010-11-29Merge System into Support.Michael J. Spencer