| Commit message (Expand) | Author | Age | Files | Lines |
* | tabs -> spaces. | Chris Lattner | 2009-12-17 | 1 | -3/+3 |
* | Fix Windows build breakage... | Steve Naroff | 2009-12-17 | 1 | -4/+4 |
* | Fix unused variable warning. | Eric Christopher | 2009-12-17 | 1 | -1/+1 |
* | Fix one more missing this-> to placate that picky clang++. | Daniel Dunbar | 2009-12-16 | 1 | -1/+1 |
* | fix more missing this->'s to placate clang++ | Chris Lattner | 2009-12-16 | 1 | -26/+27 |
* | Fix a missing this-> that clang++ notices. | Chris Lattner | 2009-12-16 | 1 | -1/+1 |
* | now that libsystem no longer uses SmallVector, we can move | Chris Lattner | 2009-12-16 | 1 | -21/+3 |
* | factor out the grow() method for all pod implementations into one | Chris Lattner | 2009-12-16 | 1 | -37/+76 |
* | pull destroy_range and uninitialized_copy up to the | Chris Lattner | 2009-12-16 | 1 | -26/+32 |
* | sink most of the meat in smallvector back from SmallVectorTemplateCommon | Chris Lattner | 2009-12-16 | 1 | -202/+210 |
* | substantial refactoring of SmallVector, now most code is in SmallVectorTempla... | Chris Lattner | 2009-12-16 | 1 | -57/+93 |
* | a few improvements: | Chris Lattner | 2009-12-15 | 1 | -10/+8 |
* | hoist the begin/end/capacity members and a few trivial methods | Chris Lattner | 2009-12-15 | 1 | -145/+145 |
* | improve isPodLike to know that all non-class types are pod. | Chris Lattner | 2009-12-15 | 1 | -0/+7 |
* | Remove isPod() from DenseMapInfo, splitting it out to its own | Chris Lattner | 2009-12-15 | 5 | -13/+20 |
* | Names from dependent base classes are not found by unqualified lookup. | John McCall | 2009-12-15 | 1 | -1/+1 |
* | Simplify this class by removing the result cache. | Gabor Greif | 2009-12-11 | 1 | -17/+13 |
* | DeltaAlgorithm: Add a virtual destructor and home. | Daniel Dunbar | 2009-12-09 | 1 | -0/+2 |
* | Remove unneeded ';' and a class/struct mismatch (noticed by clang). | Daniel Dunbar | 2009-12-09 | 1 | -1/+1 |
* | remove extraneous comma clang warns about | Chris Lattner | 2009-12-06 | 1 | -1/+1 |
* | Add an implementation of the delta debugging algorithm. | Daniel Dunbar | 2009-12-03 | 1 | -0/+89 |
* | typo | Gabor Greif | 2009-12-01 | 1 | -1/+1 |
* | demonstrate usage of Cases() mapping several strings to the same value; remov... | Gabor Greif | 2009-12-01 | 1 | -16/+16 |
* | Remove forgotten ShortNames in Trie and CompilationGraph | Tobias Grosser | 2009-11-30 | 1 | -2/+1 |
* | Allow SmallString to implicitly convert to StringRef. | Daniel Dunbar | 2009-11-21 | 1 | -1/+4 |
* | cstdlib is not automatically included with StringRef anymore. | Benjamin Kramer | 2009-11-19 | 1 | -0/+1 |
* | Remove the now obsolete algorithm include from StringRef.h. | Benjamin Kramer | 2009-11-19 | 1 | -1/+1 |
* | Workaround PR5482, because all the gcc versions that I had were miscompiling ... | Torok Edwin | 2009-11-19 | 1 | -7/+20 |
* | Add PS3 Triple class, Credit to John Thompson. | Edward O'Callaghan | 2009-11-19 | 1 | -1/+2 |
* | Twine: Stores kinds as uchar instead of bitfield to be friendlier to the | Daniel Dunbar | 2009-11-19 | 1 | -4/+4 |
* | Added getArchNameForAssembler method to the Triple class for which returns OS... | Viktor Kutuzov | 2009-11-17 | 1 | -0/+4 |
* | add Case() with 5 args | Nuno Lopes | 2009-11-17 | 1 | -0/+8 |
* | 1. Allow SCCIterator to work with GraphT types that are constant. | Duncan Sands | 2009-11-17 | 2 | -5/+15 |
* | Fix unused variables warnings. | Eric Christopher | 2009-11-16 | 1 | -1/+1 |
* | add a version of array_pod_sort that takes a custom comparator function. | Chris Lattner | 2009-11-15 | 1 | -0/+8 |
* | Add PSP OS Target to Triple, Credit to Bruno Cardoso Lopes. | Edward O'Callaghan | 2009-11-15 | 1 | -0/+1 |
* | Use .data() instead of .c_str() when nul-termination is not needed. | Dan Gohman | 2009-11-13 | 1 | -1/+1 |
* | Switch to smallvector. Also fix issue with using unsigend for MaxSplit. | Rafael Espindola | 2009-11-13 | 1 | -10/+4 |
* | Add a new split method to StringRef that puts the substrings in a vector. | Rafael Espindola | 2009-11-13 | 1 | -0/+27 |
* | StringRef(const char*) should not be used to turn null pointers into empty | Daniel Dunbar | 2009-11-12 | 1 | -1/+1 |
* | Add compare_lower and equals_lower methods to StringRef. Switch all users of | Benjamin Kramer | 2009-11-12 | 1 | -0/+8 |
* | Add StringRef::split(StringRef), to complement StringRef::split(char). | Daniel Dunbar | 2009-11-11 | 1 | -0/+17 |
* | Add Triple::str() which returns the contents of the Triple as a string, as a ... | Daniel Dunbar | 2009-11-11 | 1 | -0/+2 |
* | Add From arguments to StringRef search functions, and tweak doxyments. | Daniel Dunbar | 2009-11-11 | 1 | -11/+19 |
* | Fix DenseMap iterator constness. | Jeffrey Yasskin | 2009-11-10 | 1 | -39/+36 |
* | Add StringSwitch::Cases overloads, for matching multiple strings to a single | Daniel Dunbar | 2009-11-09 | 1 | -0/+19 |
* | Pass StringRef by value. | Daniel Dunbar | 2009-11-06 | 3 | -31/+31 |
* | Add a bunch of missing "template" keywords to disambiguate dependent template... | Douglas Gregor | 2009-11-06 | 1 | -8/+11 |
* | Make a few more LLVM headers parsable as standalone headers. | Douglas Gregor | 2009-11-05 | 4 | -4/+6 |
* | add newline to make cl.exe happy. | Zhongxing Xu | 2009-10-29 | 1 | -1/+1 |