| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | First step in fixing PR8927: | Rafael Espindola | 2011-01-08 | 2 | -0/+4 |
* | Simplify the allocation and freeing of Users' operand lists, now that | Jay Foad | 2011-01-07 | 2 | -60/+1 |
* | Silence a warning from non-standard warning avoidance code. | Jakob Stoklund Olesen | 2011-01-05 | 1 | -1/+2 |
* | These methods should be "const"; make them so. | Duncan Sands | 2011-01-04 | 1 | -4/+4 |
* | split dom frontier handling stuff out to its own DominanceFrontier header, | Chris Lattner | 2011-01-02 | 1 | -1/+2 |
* | fix PR8867: a crash handling fp128. Thanks to Nick for the testcase. | Chris Lattner | 2010-12-29 | 1 | -1/+1 |
* | add methods to IRBuilder to create memcpy/memset/memmove. | Chris Lattner | 2010-12-26 | 1 | -0/+81 |
* | Change all self assignments X=X to (void)X, so that we can turn on a | Jeffrey Yasskin | 2010-12-23 | 4 | -10/+10 |
* | rename MVT::Flag to MVT::Glue. "Flag" is a terrible name for | Chris Lattner | 2010-12-21 | 1 | -1/+1 |
* | Revert r122114 (CallbackVH observing use-list changes) because it caused seve... | Owen Anderson | 2010-12-20 | 1 | -38/+0 |
* | There is no need for isAssociative to take the type as an argument anymore. | Duncan Sands | 2010-12-20 | 2 | -3/+2 |
* | Add missing standard headers. Patch by Joerg Sonnenberger! | Nick Lewycky | 2010-12-19 | 1 | -0/+1 |
* | Add missing std:: prefixes to some calls. C++ doesn't require that <cfoo> | Nick Lewycky | 2010-12-19 | 1 | -2/+2 |
* | Add support to CallbackVH to receive notification when a Value's use-list cha... | Owen Anderson | 2010-12-18 | 1 | -0/+38 |
* | Remove trailing whitespace. | Bob Wilson | 2010-12-17 | 1 | -7/+6 |
* | MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v... | Michael J. Spencer | 2010-12-16 | 1 | -4/+6 |
* | Move Value::getUnderlyingObject to be a standalone | Dan Gohman | 2010-12-15 | 1 | -21/+0 |
* | Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code... | Michael J. Spencer | 2010-12-09 | 1 | -7/+8 |
* | Remove the code from Function::dropAllReferences which replaced | Dan Gohman | 2010-12-07 | 1 | -13/+4 |
* | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad | 2010-12-07 | 1 | -10/+7 |
* | Fix PR 4170 by having ExtractValueInst::getIndexedType() reject out-of-bounds... | Frits van Bommel | 2010-12-05 | 1 | -7/+24 |
* | Remove unneeded zero arrays. | Benjamin Kramer | 2010-12-04 | 1 | -3/+1 |
* | Apparently APFloat::getZero doesn't like PPCDoubleDoubles. | Benjamin Kramer | 2010-12-04 | 1 | -1/+1 |
* | Simplify code. No functionality change. | Benjamin Kramer | 2010-12-04 | 1 | -6/+9 |
* | Merge System into Support. | Michael J. Spencer | 2010-11-29 | 6 | -9/+9 |
* | add a function to the C api to get the context out of a module, patch | Chris Lattner | 2010-11-28 | 1 | -0/+6 |
* | add a 'LLVMConstIntOfArbitraryPrecision' api to the C api, | Chris Lattner | 2010-11-23 | 1 | -0/+8 |
* | Simplify code. No change in functionality. | Benjamin Kramer | 2010-11-20 | 1 | -10/+6 |
* | Fix an order-of-deallocation issue where the AttrListImpl could be deallocate... | Owen Anderson | 2010-11-18 | 1 | -2/+7 |
* | Now that hasConstantValue has been made simpler, it may return the | Duncan Sands | 2010-11-17 | 1 | -4/+5 |
* | now that AsmPrinter::EmitInlineAsm is factored right, we can eliminate the | Chris Lattner | 2010-11-17 | 2 | -6/+8 |
* | fix PR8613 - Copy constructor of SwitchInst does not call SwitchInst::init | Chris Lattner | 2010-11-17 | 1 | -8/+9 |
* | Fix a layering violation: hasConstantValue, which is part of the PHINode | Duncan Sands | 2010-11-17 | 1 | -56/+7 |
* | If dom tree information is available, make it possible to pass | Duncan Sands | 2010-11-14 | 1 | -1/+1 |
* | Doxygenify | Nick Lewycky | 2010-11-11 | 1 | -1/+1 |
* | Factor out Instruction::isSafeToSpeculativelyExecute's code for | Dan Gohman | 2010-11-11 | 2 | -18/+58 |
* | Include ImmutablePass passes in -debug-pass=Arguments. | Dan Gohman | 2010-11-11 | 1 | -0/+6 |
* | Last try to get this reference counting right, I swear. | Owen Anderson | 2010-11-09 | 1 | -1/+1 |
* | Really fix the leak in the attributes list. Thanks to Benjamin Kramer for po... | Owen Anderson | 2010-11-09 | 1 | -2/+2 |
* | Fix leak in my recent fix for PR8442. | Owen Anderson | 2010-11-09 | 1 | -1/+1 |
* | Fix PR8441, a race condition in the static attributes list. While the refere... | Owen Anderson | 2010-11-09 | 1 | -5/+12 |
* | Apply patch for use-after-free in InlineAsm constant handling, | Dale Johannesen | 2010-11-02 | 1 | -0/+1 |
* | Inline asm multiple alternative constraints development phase 2 - improved ba... | John Thompson | 2010-10-29 | 1 | -5/+5 |
* | Add a new 'hotpatch' attribute. This attribute will insert a two-byte no-op | Charles Davis | 2010-10-25 | 1 | -0/+2 |
* | Make some symbols static, move classes into anonymous namespaces. | Benjamin Kramer | 2010-10-22 | 2 | -1/+3 |
* | Attempt to fix valgrind complaining about (benign) leaks in pass registration... | Owen Anderson | 2010-10-20 | 1 | -2/+14 |
* | Add RegionPass support. | Tobias Grosser | 2010-10-20 | 1 | -0/+3 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -3/+9 |
* | std::string cleanup. | Benjamin Kramer | 2010-10-17 | 1 | -1/+1 |
* | Build with RTTI and exceptions disabled. Only in GCC for now. | Oscar Fuentes | 2010-10-17 | 1 | -0/+2 |