aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/IPConstantPropagation.cpp
AgeCommit message (Expand)Author
2006-12-19Eliminate static ctors due to Statistic objectsChris Lattner
2006-12-06Detemplatize the Statistic class. The only type it is instantiated withChris Lattner
2006-08-27eliminate RegisterOpt. It does the same thing as RegisterPass.Chris Lattner
2005-04-21Remove trailing whitespaceMisha Brukman
2005-03-15This mega patch converts us from using Function::a{iterator|begin|end} toChris Lattner
2004-12-11Only cound if we actually made a change.Chris Lattner
2004-11-14Remove note to selfChris Lattner
2004-11-14If a function always returns a constant, replace all calls sites with thatChris Lattner
2004-11-11Actually, leave the check in. This prevents us from counting dead argumentsChris Lattner
2004-11-11Fix bug: IPConstantProp/deadarg.llChris Lattner
2004-11-10Make IP Constant prop more aggressive about handling self recursive calls.Chris Lattner
2004-11-09Do not let dead constant expressions hanging off of functions prevent IPCP.Chris Lattner
2004-09-20'Pass' should now not be derived from by clients. Instead, they should deriveChris Lattner
2004-09-01Changes For Bug 352Reid Spencer
2004-07-18Avoid an unnecessary isa<Constant>.Reid Spencer
2004-07-18bug 122:Reid Spencer
2003-11-21Finegrainify namespacificationChris Lattner
2003-11-11Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke
2003-10-27Propagating constants to arguments can make other arguments constant. For nowChris Lattner
2003-10-23We might as well strip off any CPRs before propagationChris Lattner
2003-10-23Check in initial version of ipcpChris Lattner