| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a bad char heuristic to StringRef::find. | Benjamin Kramer | 2011-10-15 | 1 | -0/+6 |
* | Attempt to fix MSVC build. | Eli Friedman | 2011-10-12 | 1 | -2/+2 |
* | Fix APFloat::getLargest so that it actually returns the correct value. Found... | Eli Friedman | 2011-10-12 | 1 | -0/+5 |
* | Fix APInt::operator*= so that it computes the correct result for large intege... | Eli Friedman | 2011-10-07 | 1 | -0/+9 |
* | Fix a bug in compare_numeric(). | Jakob Stoklund Olesen | 2011-09-30 | 1 | -0/+6 |
* | Add APInt support for converting to/from hexatridecimal strings | Douglas Gregor | 2011-09-14 | 1 | -1/+24 |
* | Fix a test that wasn't testing the right thing. | Matt Beaumont-Gay | 2011-08-29 | 1 | -4/+6 |
* | Avoid undefined behaviour if somehow NUM_GRAPHS equals 2^32 (or | Duncan Sands | 2011-07-29 | 1 | -10/+6 |
* | Remove extra semicolon. | Jakub Staszak | 2011-07-29 | 1 | -1/+1 |
* | Use unsigned rather than uint16_t in case anyone feels like testing | Duncan Sands | 2011-07-28 | 1 | -4/+4 |
* | Check an additional property specific to the way LLVM | Duncan Sands | 2011-07-28 | 1 | -0/+15 |
* | Add a unittest for the simply connected components (SCC) iterator class. | Duncan Sands | 2011-07-28 | 1 | -0/+335 |
* | Remove some code that is no longer needed now that googletest knows how | Jay Foad | 2011-07-27 | 1 | -17/+0 |
* | Add Twine support for characters, and switch twine to use a union internally | Chris Lattner | 2011-07-24 | 1 | -2/+6 |
* | Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future a... | Jeffrey Yasskin | 2011-07-18 | 1 | -0/+4 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -1/+1 |
* | Add an APFloat::convertToInt(APSInt) function that automatically manages the | Jeffrey Yasskin | 2011-07-15 | 1 | -0/+49 |
* | The key of a StringMap can contain nul's in it, so having first() return | Chris Lattner | 2011-07-14 | 1 | -3/+3 |
* | Fix a subtle issue in SmallVector. The following code did not work as expected: | Owen Anderson | 2011-07-06 | 1 | -21/+27 |
* | unittests: add test for APInt::toString() | Dylan Noblesmith | 2011-06-15 | 1 | -0/+46 |
* | Try fixing http://google1.osuosl.org:8011/builders/clang-i686-freebsd/builds/... | Argyrios Kyrtzidis | 2011-06-15 | 1 | -0/+4 |
* | Add unit tests for ADT/PackedVector | Argyrios Kyrtzidis | 2011-06-15 | 1 | -0/+111 |
* | Remove bounded StringRef::compare() since nothing but Clang SA was using it a... | Lenny Maiorani | 2011-04-28 | 1 | -13/+0 |
* | Implements StringRef::compare with bounds. It is behaves similarly to strncmp... | Lenny Maiorani | 2011-04-15 | 1 | -0/+13 |
* | Avoid turning a floating point division with a constant power of two into a d... | Benjamin Kramer | 2011-03-30 | 1 | -4/+2 |
* | Add APFloat::getExactInverse. | Benjamin Kramer | 2011-03-30 | 1 | -0/+23 |
* | Add an argument to APInt's magic udiv calculation to specify the number of bi... | Benjamin Kramer | 2011-03-17 | 1 | -0/+2 |
* | The signed version of our "magic number" computation for the integer approxim... | Cameron Zwarich | 2011-02-21 | 1 | -0/+18 |
* | Part of this test is invariant inside the inner loop - move it outside | Duncan Sands | 2011-02-03 | 1 | -14/+16 |
* | Remove NoVendor and NoOS, added in commit 123990, from Triple. While it | Duncan Sands | 2011-02-02 | 1 | -45/+49 |
* | Don't infinitely recurse! Patch by Marius Wachtler! | Chris Lattner | 2011-01-27 | 1 | -1/+1 |
* | Clang was not parsing target triples involving EABI and was generating wrong ... | Renato Golin | 2011-01-21 | 1 | -3/+11 |
* | Add ADT/IntEqClasses.h as a light-weight implementation of EquivalenceClasses.h. | Jakob Stoklund Olesen | 2010-12-21 | 1 | -0/+107 |
* | Add more checks to IntervalMapOverlaps::advance() to ensure that advanceTo sees | Jakob Stoklund Olesen | 2010-12-17 | 1 | -0/+25 |
* | It is allowed to call IntervalMap::const_iterator::advanceTo() with a key that | Jakob Stoklund Olesen | 2010-12-17 | 1 | -0/+14 |
* | Fix crash when IntervalMapOverlaps::advanceTo moves past the last overlap. | Jakob Stoklund Olesen | 2010-12-17 | 1 | -1/+5 |
* | Complete tests for IntervalMapOverlaps. | Jakob Stoklund Olesen | 2010-12-17 | 1 | -1/+106 |
* | Add basic test exposing many bugs. | Jakob Stoklund Olesen | 2010-12-16 | 1 | -0/+15 |
* | Add IntervalMap::iterator::set{Start,Stop,Value} methods that allow limited | Jakob Stoklund Olesen | 2010-12-03 | 1 | -7/+119 |
* | Support/ADT/Twine: Add toNullTerminatedStringRef. | Michael J. Spencer | 2010-12-01 | 1 | -0/+8 |
* | PR5207: Rename overloaded APInt methods set(), clear(), flip() to | Jay Foad | 2010-12-01 | 1 | -1/+1 |
* | Merge System into Support. | Michael J. Spencer | 2010-11-29 | 1 | -1/+1 |
* | Disallow overlapping inserts, even when inserting the same value. | Jakob Stoklund Olesen | 2010-11-28 | 1 | -97/+9 |
* | Add default constructors for iterators. | Jakob Stoklund Olesen | 2010-11-28 | 1 | -0/+8 |
* | Implement const_iterator::advanceTo(). | Jakob Stoklund Olesen | 2010-11-28 | 1 | -0/+42 |
* | Add more tests for erase(). Fix a few exposed bugs. | Jakob Stoklund Olesen | 2010-11-27 | 1 | -1/+29 |
* | Add test case with randomly ordered insertions, massive coalescing. | Jakob Stoklund Olesen | 2010-11-27 | 1 | -0/+24 |
* | Add B+-tree test case that creates a height 3 tree with a smaller root node. | Jakob Stoklund Olesen | 2010-11-26 | 1 | -0/+51 |
* | Tweak ImmutableMap/ImmutableSet/ImmutableList APIs | Ted Kremenek | 2010-11-24 | 1 | -24/+24 |
* | Implement IntervalMap::clear(). | Jakob Stoklund Olesen | 2010-11-19 | 1 | -0/+9 |