| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove unnecessary classof()'s | Sean Silva | 2012-10-11 | 1 | -1/+0 |
* | More descriptive, doxygen-ed comments | Michael Ilseman | 2012-10-09 | 1 | -2/+4 |
* | New value_op_iterator for User. This allows other code to iterate over the Us... | Michael Ilseman | 2012-10-09 | 1 | -1/+38 |
* | Use LLVM_DELETED_FUNCTION for copy constructors and copy assignment operators... | Craig Topper | 2012-09-16 | 1 | -2/+2 |
* | Grammar. | Eric Christopher | 2012-05-16 | 1 | -2/+2 |
* | Convert assert(0) to llvm_unreachable | Craig Topper | 2012-02-05 | 1 | -2/+3 |
* | Add some missing anchors. | David Blaikie | 2011-12-01 | 1 | -0/+1 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -1/+1 |
* | Fix typos in assert messages. | Jay Foad | 2011-03-21 | 1 | -2/+2 |
* | Simplify User::operator delete(). | Jay Foad | 2011-01-26 | 1 | -0/+1 |
* | Simplify the construction and destruction of Uses. Simplify | Jay Foad | 2011-01-16 | 1 | -6/+4 |
* | Remove unnecessary specialization OperandTraits<User>. | Jay Foad | 2011-01-16 | 1 | -22/+0 |
* | OperandTraits<>::Layout isn't used for anything. Remove it. | Jay Foad | 2011-01-14 | 1 | -4/+0 |
* | Simplify the allocation and freeing of Users' operand lists, now that | Jay Foad | 2011-01-07 | 1 | -3/+1 |
* | Remove some dead functions, patch by Ryan Flynn! | Chris Lattner | 2009-07-14 | 1 | -1/+0 |
* | Fix the Win32 VS2008 build: | Sebastian Redl | 2009-03-19 | 1 | -0/+4 |
* | Rearrange operands of the BranchInst, to be able to | Gabor Greif | 2009-03-12 | 1 | -1/+3 |
* | Give Op<N>() AppleScript-like semantics, i.e. for negative N it indexes relat... | Gabor Greif | 2009-03-10 | 1 | -4/+9 |
* | make the Op<N> methods protected, how it was intended to be | Gabor Greif | 2009-03-09 | 1 | -0/+2 |
* | fix and clean up a comment | Gabor Greif | 2009-02-21 | 1 | -5/+4 |
* | add accessors | Chris Lattner | 2009-01-31 | 1 | -0/+9 |
* | Do not allow a user to set the operand for a constant. | Tanya Lattner | 2008-10-28 | 1 | -0/+3 |
* | Move some documentation from the header file into ProgrammersManual. About to... | Gabor Greif | 2008-06-16 | 1 | -165/+0 |
* | op_iterator-ify dropAllReferences | Gabor Greif | 2008-06-11 | 1 | -5/+4 |
* | Suppress warnings about missing placement delete. This should now be std-conf... | Gabor Greif | 2008-05-22 | 1 | -0/+5 |
* | Remove warnings about unused parameters and shadowed variables. | Bill Wendling | 2008-05-19 | 1 | -2/+2 |
* | Move the operator new and operator delete out of line. This fixes an issue with | Nate Begeman | 2008-05-15 | 1 | -17/+2 |
* | merge of use-diet branch to trunk | Gabor Greif | 2008-05-10 | 1 | -6/+236 |
* | Fix more -Wshorten-64-to-32 warnings. | Evan Cheng | 2008-05-05 | 1 | -1/+1 |
* | API changes for class Use size reduction, wave 1. | Gabor Greif | 2008-04-06 | 1 | -1/+5 |
* | To support multiple return values, now ret instruction supports multiple oper... | Devang Patel | 2008-02-23 | 1 | -2/+3 |
* | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Reverting dtor devirtualization patch. | Gordon Henriksen | 2007-12-10 | 1 | -4/+0 |
* | Devirtualizing Value destructor (PR889). Patch by Pawel Kunio! | Gordon Henriksen | 2007-12-09 | 1 | -0/+4 |
* | Switch ValueSymbolTable to use StringMap<Value*> instead of std::map<std::str... | Chris Lattner | 2007-02-12 | 1 | -4/+2 |
* | Move the definition of value_use_iterator::getOperandNo to User.h where the | Chris Lattner | 2006-05-08 | 1 | -0/+7 |
* | Remove trailing whitespace | Misha Brukman | 2005-04-21 | 1 | -7/+7 |
* | Fix spelling, patch contributed by Gabor Greif | Chris Lattner | 2005-02-27 | 1 | -0/+2 |
* | Instead of storing operands as std::vector<Use>, just maintain a pointer | Chris Lattner | 2005-01-29 | 1 | -32/+31 |
* | Warning fixes for VC++, contributed by Morten Ofstad! | Chris Lattner | 2004-11-15 | 1 | -1/+1 |
* | bug 122: | Reid Spencer | 2004-07-17 | 1 | -2/+1 |
* | Make ctor inline, change ValueTy ->unsigned | Chris Lattner | 2004-06-27 | 1 | -1/+2 |
* | Consider anything with a ValueType that is >= Instruction to be an instruction | Chris Lattner | 2004-06-26 | 1 | -3/+2 |
* | Fixes for PR114: Thanks to Reid Spencer! | Chris Lattner | 2003-11-16 | 1 | -2/+2 |
* | Put all LLVM code into the llvm namespace, as per bug 109. | Brian Gaeke | 2003-11-11 | 1 | -0/+4 |
* | Added LLVM copyright header (for lack of a better term). | John Criswell | 2003-10-20 | 1 | -0/+7 |
* | lalala | Chris Lattner | 2003-10-15 | 1 | -0/+1 |
* | Add new op_erase method | Chris Lattner | 2003-10-13 | 1 | -0/+3 |
* | Add a method to reserve space for operands | Chris Lattner | 2003-10-09 | 1 | -0/+2 |
* | Remove unneeded dtors | Chris Lattner | 2003-10-06 | 1 | -1/+0 |