Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | For PR950: | Reid Spencer | 2006-10-20 | 1 | -1/+1 |
| | | | | | | | | This patch implements the first increment for the Signless Types feature. All changes pertain to removing the ConstantSInt and ConstantUInt classes in favor of just using ConstantInt. llvm-svn: 31063 | ||||
* | ConvertibleToGEP always returns 0, remove some old crufty code which | Chris Lattner | 2005-07-26 | 1 | -14/+0 |
| | | | | | | is actually dead because of this! llvm-svn: 22515 | ||||
* | Remove trailing whitespace | Misha Brukman | 2005-04-21 | 1 | -3/+3 |
| | | | | llvm-svn: 21427 | ||||
* | Adjust Valuehandle to hold its operand directly in it. | Chris Lattner | 2005-01-29 | 1 | -0/+1 |
| | | | | llvm-svn: 19897 | ||||
* | Convert 'struct' to 'class' in various places to adhere to the coding standards | Chris Lattner | 2004-10-27 | 1 | -1/+2 |
| | | | | | | and work better with VC++. Patch contributed by Morten Ofstad! llvm-svn: 17281 | ||||
* | Put all LLVM code into the llvm namespace, as per bug 109. | Brian Gaeke | 2003-11-11 | 1 | -0/+4 |
| | | | | llvm-svn: 9903 | ||||
* | Added LLVM copyright header. | John Criswell | 2003-10-21 | 1 | -0/+7 |
| | | | | llvm-svn: 9321 | ||||
* | Regularize header file comments | Chris Lattner | 2003-10-13 | 1 | -1/+1 |
| | | | | llvm-svn: 9071 | ||||
* | The word `dependent' has no `a'. | Misha Brukman | 2003-08-21 | 1 | -1/+1 |
| | | | | llvm-svn: 8030 | ||||
* | Simplify code by using ConstantInt::getRawValue instead of checking to see | Chris Lattner | 2003-07-23 | 1 | -3/+1 |
| | | | | | | whether the constant is signed or unsigned, then casting llvm-svn: 7252 | ||||
* | s/convertable/convertible/g | Misha Brukman | 2003-05-20 | 1 | -5/+5 |
| | | | | llvm-svn: 6248 | ||||
* | Make the levelraise pass be well behaved w.r.t the TargetData that the current | Chris Lattner | 2003-04-24 | 1 | -13/+10 |
| | | | | | | PassMAnager provides. llvm-svn: 5896 | ||||
* | Fix: test/Regression/LLC/badidx.c problem | Chris Lattner | 2002-09-16 | 1 | -3/+3 |
| | | | | llvm-svn: 3763 | ||||
* | * Remove dead code from ExprTypeConvert.cpp | Chris Lattner | 2002-07-17 | 1 | -30/+43 |
| | | | | | | | | | | | | - I->use_empty() can never be true because of the IHolder's * Fix bug: test/Regression/Transforms/LevelRaise/2002-07-16-SourceAndDestCrash.ll - Add a new NewCasts member to VMC to keep track of casts that have been created and to ensure there is always a reference to the cast. - Extend ValueHandle a bit so it can be used in an STL container - Make sure we destroy the ValueMapCache before verifying the function in LevelRaise.cpp llvm-svn: 2936 | ||||
* | Factor code out of TransformInternals into the Transform Utils library | Chris Lattner | 2002-05-07 | 1 | -24/+0 |
| | | | | llvm-svn: 2515 | ||||
* | Split ConstantVals.h into Constant.h and Constants.h | Chris Lattner | 2002-04-28 | 1 | -1/+1 |
| | | | | llvm-svn: 2378 | ||||
* | Add casts for documentation | Chris Lattner | 2002-04-16 | 1 | -2/+2 |
| | | | | llvm-svn: 2272 | ||||
* | Declare the new InsertInstBeforeInst function | Chris Lattner | 2002-03-21 | 1 | -0/+7 |
| | | | | llvm-svn: 1927 | ||||
* | Changes to build successfully with GCC 3.02 | Chris Lattner | 2002-01-20 | 1 | -7/+8 |
| | | | | llvm-svn: 1503 | ||||
* | * isFirstClassType is now provided by the Type class | Chris Lattner | 2001-12-14 | 1 | -7/+2 |
| | | | | | | * Add ReplaceInstWithInst llvm-svn: 1468 | ||||
* | Renamed inst_const_iterator -> const_inst_iterator | Chris Lattner | 2001-12-04 | 1 | -1/+1 |
| | | | | | | | Renamed op_const_iterator -> const_op_iterator Renamed PointerType::getValueType() -> PointerType::getElementType() llvm-svn: 1408 | ||||
* | Rename ConstPoolVal -> Constant | Chris Lattner | 2001-12-03 | 1 | -4/+4 |
| | | | | | | | Rename ConstPool* -> Constant* Rename ConstPoolVals.h -> ConstantVals.h llvm-svn: 1407 | ||||
* | Support Composite's, not just structs | Chris Lattner | 2001-11-26 | 1 | -14/+28 |
| | | | | llvm-svn: 1344 | ||||
* | * Change ExpressionConvertableToType to more closely match map behavior of | Chris Lattner | 2001-11-13 | 1 | -1/+2 |
| | | | | | | | | | ConvertExpressionToType * Make ValueHandle's remove instruction from maps when they are deleted so that no false map hits occur if a subsequent instruction is allocated to the same space in memory. This was a VERY VERY VERY EVIL NASTY BUG to track down. :-P llvm-svn: 1288 | ||||
* | Improve raising significantly | Chris Lattner | 2001-11-08 | 1 | -0/+28 |
| | | | | llvm-svn: 1214 | ||||
* | Fix bugs | Chris Lattner | 2001-11-06 | 1 | -5/+10 |
| | | | | llvm-svn: 1152 | ||||
* | Use the expression map correctly. | Chris Lattner | 2001-11-05 | 1 | -2/+46 |
| | | | | llvm-svn: 1140 | ||||
* | Refactor code to share stuff | Chris Lattner | 2001-11-04 | 1 | -0/+56 |
llvm-svn: 1127 |