| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Change StringRef::startswith and StringRef::endswith to versions which are a | Eli Friedman | 2009-12-21 | 1 | -2/+4 |
* | Fixed use of phi param in SlotIndex constructors. | Lang Hames | 2009-12-19 | 1 | -2/+2 |
* | Fix a bunch of little errors that Clang complains about when its being pedantic | Douglas Gregor | 2009-12-19 | 1 | -1/+1 |
* | Remove spurious semicolon. Thanks, Clang | Douglas Gregor | 2009-12-19 | 1 | -1/+1 |
* | Delete unused code. | Dan Gohman | 2009-12-19 | 1 | -14/+0 |
* | Make some methods const. The only interesting change here is that | Chris Lattner | 2009-12-19 | 3 | -11/+11 |
* | Forgot forward declaration. | Bill Wendling | 2009-12-19 | 1 | -0/+2 |
* | Eliminate unnecessary LLVMContexts. | Dan Gohman | 2009-12-18 | 4 | -8/+2 |
* | Changes from review: | Bill Wendling | 2009-12-18 | 3 | -50/+71 |
* | Formalize MDNode's function-localness: | Victor Hernandez | 2009-12-18 | 1 | -6/+18 |
* | Add utility routines for NSW multiply. | Dan Gohman | 2009-12-18 | 6 | -0/+37 |
* | Add utility routines for creating integer negation operators with NSW set. | Dan Gohman | 2009-12-18 | 6 | -0/+19 |
* | Preserve NSW information in more places. | Dan Gohman | 2009-12-18 | 1 | -1/+1 |
* | Add Loop contains utility methods for testing whether a loop | Dan Gohman | 2009-12-18 | 1 | -1/+17 |
* | Reapply LoopStrengthReduce and IVUsers cleanups, excluding the part | Dan Gohman | 2009-12-18 | 2 | -8/+1 |
* | Sundry dependent-name fixes flagged by clang++. | John McCall | 2009-12-17 | 1 | -2/+2 |
* | tabs -> spaces. | Chris Lattner | 2009-12-17 | 1 | -3/+3 |
* | Make Path use StringRef instead of std::string where possible. | Jeffrey Yasskin | 2009-12-17 | 1 | -23/+24 |
* | Fix Windows build breakage... | Steve Naroff | 2009-12-17 | 1 | -4/+4 |
* | Introduce EVT::getHalfSizedIntegerVT() for use in ExpandUnalignedStore() in | Ken Dyck | 2009-12-17 | 1 | -1/+19 |
* | This fixes a memory leak in OpaqueType found by Google's internal heapchecker. | Jeffrey Yasskin | 2009-12-17 | 1 | -3/+1 |
* | Fix unused variable warning. | Eric Christopher | 2009-12-17 | 1 | -1/+1 |
* | Revert 91280-91283, 91286-91289, 91291, 91293, 91295-91296. It apparently int... | Evan Cheng | 2009-12-17 | 2 | -1/+8 |
* | Add a 'set_option' action for use in OptionPreprocessor. | Mikhail Glushenkov | 2009-12-17 | 1 | -0/+1 |
* | BIT_CONVERT nodes are used for vector types, too. | Bob Wilson | 2009-12-17 | 1 | -6/+7 |
* | Reapply r91392, it was only unmasking the bug, and since TOT is still broken ... | Daniel Dunbar | 2009-12-16 | 1 | -0/+50 |
* | Add @earlyclobber TableGen constraint | Jim Grosbach | 2009-12-16 | 1 | -2/+3 |
* | Fix one more missing this-> to placate that picky clang++. | Daniel Dunbar | 2009-12-16 | 1 | -1/+1 |
* | Revert "Initial work on disabling the scheduler. This is a work in progress, and | Daniel Dunbar | 2009-12-16 | 1 | -50/+0 |
* | 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 |
* | Use different name for argument and field | Victor Hernandez | 2009-12-16 | 1 | -1/+1 |
* | 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 |
* | MDNodes that refer to an instruction are local to a function; in that case, e... | Victor Hernandez | 2009-12-16 | 1 | -2/+8 |
* | Change indirect-globals to use a dedicated allocIndirectGV. This lets us | Jeffrey Yasskin | 2009-12-15 | 2 | -62/+27 |
* | Add support to emit debug info for C++ namespaces. | Devang Patel | 2009-12-15 | 1 | -1/+23 |
* | 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 | 2 | -27/+24 |
* | Lang verified that SlotIndex is "pod like" even though it isn't a pod. | Chris Lattner | 2009-12-15 | 1 | -1/+3 |
* | Remove isPod() from DenseMapInfo, splitting it out to its own | Chris Lattner | 2009-12-15 | 12 | -68/+105 |
* | add an ALWAYS_INLINE macro, which does the obvious thing. | Chris Lattner | 2009-12-15 | 1 | -0/+10 |
* | Names from dependent base classes are not found by unqualified lookup. | John McCall | 2009-12-15 | 1 | -1/+1 |
* | Validate the generated C++ code in llvmc tests. | Mikhail Glushenkov | 2009-12-15 | 1 | -1/+1 |
* | Initial work on disabling the scheduler. This is a work in progress, and this | Bill Wendling | 2009-12-15 | 1 | -0/+50 |
* | Revert these. They may have been causing 483_xalancbmk to fail: | Bill Wendling | 2009-12-15 | 1 | -5/+0 |