| Age | Commit message (Expand) | Author |
| 2009-12-11 | Simplify this class by removing the result cache. | Gabor Greif |
| 2009-12-09 | DeltaAlgorithm: Add a virtual destructor and home. | Daniel Dunbar |
| 2009-12-09 | Remove unneeded ';' and a class/struct mismatch (noticed by clang). | Daniel Dunbar |
| 2009-12-06 | remove extraneous comma clang warns about | Chris Lattner |
| 2009-12-03 | Add an implementation of the delta debugging algorithm. | Daniel Dunbar |
| 2009-12-01 | typo | Gabor Greif |
| 2009-12-01 | demonstrate usage of Cases() mapping several strings to the same value; remov... | Gabor Greif |
| 2009-11-30 | Remove forgotten ShortNames in Trie and CompilationGraph | Tobias Grosser |
| 2009-11-21 | Allow SmallString to implicitly convert to StringRef. | Daniel Dunbar |
| 2009-11-19 | cstdlib is not automatically included with StringRef anymore. | Benjamin Kramer |
| 2009-11-19 | Remove the now obsolete algorithm include from StringRef.h. | Benjamin Kramer |
| 2009-11-19 | Workaround PR5482, because all the gcc versions that I had were miscompiling ... | Torok Edwin |
| 2009-11-19 | Add PS3 Triple class, Credit to John Thompson. | Edward O'Callaghan |
| 2009-11-19 | Twine: Stores kinds as uchar instead of bitfield to be friendlier to the | Daniel Dunbar |
| 2009-11-17 | Added getArchNameForAssembler method to the Triple class for which returns OS... | Viktor Kutuzov |
| 2009-11-17 | add Case() with 5 args | Nuno Lopes |
| 2009-11-17 | 1. Allow SCCIterator to work with GraphT types that are constant. | Duncan Sands |
| 2009-11-16 | Fix unused variables warnings. | Eric Christopher |
| 2009-11-15 | add a version of array_pod_sort that takes a custom comparator function. | Chris Lattner |
| 2009-11-15 | Add PSP OS Target to Triple, Credit to Bruno Cardoso Lopes. | Edward O'Callaghan |
| 2009-11-13 | Use .data() instead of .c_str() when nul-termination is not needed. | Dan Gohman |
| 2009-11-13 | Switch to smallvector. Also fix issue with using unsigend for MaxSplit. | Rafael Espindola |
| 2009-11-13 | Add a new split method to StringRef that puts the substrings in a vector. | Rafael Espindola |
| 2009-11-12 | StringRef(const char*) should not be used to turn null pointers into empty | Daniel Dunbar |
| 2009-11-12 | Add compare_lower and equals_lower methods to StringRef. Switch all users of | Benjamin Kramer |
| 2009-11-11 | Add StringRef::split(StringRef), to complement StringRef::split(char). | Daniel Dunbar |
| 2009-11-11 | Add Triple::str() which returns the contents of the Triple as a string, as a ... | Daniel Dunbar |
| 2009-11-11 | Add From arguments to StringRef search functions, and tweak doxyments. | Daniel Dunbar |
| 2009-11-10 | Fix DenseMap iterator constness. | Jeffrey Yasskin |
| 2009-11-09 | Add StringSwitch::Cases overloads, for matching multiple strings to a single | Daniel Dunbar |
| 2009-11-06 | Pass StringRef by value. | Daniel Dunbar |
| 2009-11-06 | Add a bunch of missing "template" keywords to disambiguate dependent template... | Douglas Gregor |
| 2009-11-05 | Make a few more LLVM headers parsable as standalone headers. | Douglas Gregor |
| 2009-10-29 | add newline to make cl.exe happy. | Zhongxing Xu |
| 2009-10-29 | A switch-on-string-literal construct that is a nice alternative to | Douglas Gregor |
| 2009-10-28 | Remove getIEEEFloatParts and getIEEEDoubleParts. They are not needed. | Evan Cheng |
| 2009-10-27 | Add new APFloat methods that return sign, exp, and mantissa of ieee float and... | Evan Cheng |
| 2009-10-27 | Fix VS build, patch by Marius Wachtler. | Mike Stump |
| 2009-10-26 | Move DataTypes.h to include/llvm/System, update all users. This breaks the last | Chandler Carruth |
| 2009-10-23 | Fix stylistic and documentation problems in ValueMap found by Nick Lewycky and | Jeffrey Yasskin |
| 2009-10-22 | Try r84890 again (adding ValueMap<>), now that I've tested the compile on | Jeffrey Yasskin |
| 2009-10-22 | size_t, not unsigned here to silence a warning. | Eric Christopher |
| 2009-10-22 | Random include cleanup. | Benjamin Kramer |
| 2009-10-22 | Revert r84890, which broke the linux build. | Jeffrey Yasskin |
| 2009-10-22 | Add a ValueMap<ValueOrSubclass*, T> type. ValueMap<Value*, T> is safe to use | Jeffrey Yasskin |
| 2009-10-17 | More warnings patrol: Another unused argument and more implicit | Eric Christopher |
| 2009-10-17 | Move UnescapeString to a static function for its sole client; its inefficient... | Daniel Dunbar |
| 2009-10-17 | Remove llvm::EscapeString, raw_ostream::write_escaped is much faster. | Daniel Dunbar |
| 2009-10-17 | Move StringMap's string has function into StringExtras.h | Daniel Dunbar |
| 2009-10-16 | Add half precision floating point support (float16) to APFloat, | Chris Lattner |