| Age | Commit message (Expand) | Author |
| 2010-01-13 | Introduce Twine::toStringRef, a variant of toVector which avoids the copy if the | Benjamin Kramer |
| 2010-01-11 | Remove unused string functions. | Benjamin Kramer |
| 2010-01-11 | Add StrInStrNoCase, a StringRef version of CStrInCStrNoCase. | Benjamin Kramer |
| 2010-01-11 | Turns out llvm-gcc still uses SplitString with a vector. Add it back until I | Benjamin Kramer |
| 2010-01-11 | Reimplement getToken and SplitString as "StringRef helper functions" | Benjamin Kramer |
| 2010-01-09 | Suppress use of uninitialized variable warning. | Duncan Sands |
| 2010-01-07 | More trivial optimizations to a function well outside the critical path | Douglas Gregor |
| 2010-01-07 | Switch StringRef::edit_distance over to using raw pointers, since both | Douglas Gregor |
| 2010-01-05 | Change errs() to dbgs(). | David Greene |
| 2010-01-05 | Change errs() to dbgs(). | David Greene |
| 2010-01-05 | Change errs() to dbgs(). | David Greene |
| 2010-01-05 | Change errs() to dbgs(). | David Greene |
| 2010-01-05 | Change errs() to dbgs(). | David Greene |
| 2010-01-05 | Change errs() to dbgs(). | David Greene |
| 2010-01-05 | Change errs() to dbgs(). | David Greene |
| 2010-01-05 | Change errs() to dbgs(). | David Greene |
| 2009-12-31 | Document the edit-distance algorithm used in StringRef, switch it over | Douglas Gregor |
| 2009-12-30 | Implement edit distance for StringRef | Douglas Gregor |
| 2009-12-29 | Do not crash when .ll printing metadata that smells like debug info, but isn't. | Chris Lattner |
| 2009-12-29 | fix indentation, fit in 80 cols. | Chris Lattner |
| 2009-12-29 | fix .cpp file to not wrap the entire file in namespace blocks. | Chris Lattner |
| 2009-12-24 | Implement support for converting to string at "natural precision", and fix some | John McCall |
| 2009-12-24 | Substantially optimize APFloat::toString() by doing a single large divide to | John McCall |
| 2009-12-24 | Add accessors for the largest-magnitude, smallest-magnitude, and | John McCall |
| 2009-12-24 | Set Remainder before Quotient in case Quotient and LHS alias. The new | John McCall |
| 2009-12-23 | Clarify how dbgs() operates. | David Greene |
| 2009-12-23 | sizeof(char) is always 1. | Chris Lattner |
| 2009-12-23 | De-bork CMake build | Douglas Gregor |
| 2009-12-23 | Provide dbgs(), a circular-buffering debug output stream. By default it | David Greene |
| 2009-12-23 | Add circular_raw_ostream, which buffers its output in a circular queue | David Greene |
| 2009-12-19 | Make some methods const. The only interesting change here is that | Chris Lattner |
| 2009-12-16 | now that libsystem no longer uses SmallVector, we can move | Chris Lattner |
| 2009-12-14 | Micro-optimize these functions in the case where they are not inlined. | Dan Gohman |
| 2009-12-09 | DeltaAlgorithm: Add a virtual destructor and home. | Daniel Dunbar |
| 2009-12-04 | Fix typo and add missing include. | Daniel Dunbar |
| 2009-12-03 | Print a newline after the Args: line so that unrelated errs() output doesn't | Dan Gohman |
| 2009-12-03 | Add an implementation of the delta debugging algorithm. | Daniel Dunbar |
| 2009-12-01 | return more useful error messages by using strerror to format errno | Chris Lattner |
| 2009-11-25 | Perform explicit instantiations in the proper namespace, since Clang diagnose... | Douglas Gregor |
| 2009-11-22 | SourceMgr: Add ShowLine argument to PrintMessage, to allow suppressing the so... | Daniel Dunbar |
| 2009-11-20 | Move the handling of CommaSeparated options into ProvideOption. | Mikhail Glushenkov |
| 2009-11-19 | Use StringRef::min instead of std::min. | Daniel Dunbar |
| 2009-11-19 | Trailing whitespace. | Mikhail Glushenkov |
| 2009-11-19 | Add PS3 Triple class, Credit to John Thompson. | Edward O'Callaghan |
| 2009-11-17 | Added getArchNameForAssembler method to the Triple class for which returns OS... | Viktor Kutuzov |
| 2009-11-17 | Revert CPU detection code to return "generic" instead of an empty string in case | Benjamin Kramer |
| 2009-11-17 | Fix a race condition in the Timer class. | Owen Anderson |
| 2009-11-15 | Add PSP OS Target to Triple, Credit to Bruno Cardoso Lopes. | Edward O'Callaghan |
| 2009-11-14 | Report the detected host CPU in --version. | Daniel Dunbar |
| 2009-11-13 | Distinguish "a," from "a". The first one splits into "a" + "" and the second ... | Rafael Espindola |