diff options
| author | Nate Begeman <natebegeman@mac.com> | 2005-08-04 18:13:56 +0000 |
|---|---|---|
| committer | Nate Begeman <natebegeman@mac.com> | 2005-08-04 18:13:56 +0000 |
| commit | 456044b724de711b0266bb1953f2ffda024b93c7 (patch) | |
| tree | 1b6887d9cbf422c7c7295dcf8a447c5aea62c359 | |
| parent | eaf24725b20751419f248fbe2634c54426f7baa8 (diff) | |
| download | bcm5719-llvm-456044b724de711b0266bb1953f2ffda024b93c7.tar.gz bcm5719-llvm-456044b724de711b0266bb1953f2ffda024b93c7.zip | |
Remove some more dead code.
llvm-svn: 22650
| -rw-r--r-- | llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp index b24f6693bea..02c304473df 100644 --- a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -37,21 +37,6 @@ using namespace llvm; namespace { Statistic<> NumReduced ("loop-reduce", "Number of GEPs strength reduced"); - class GEPCache { - public: - GEPCache() : CachedPHINode(0), Map() {} - - GEPCache *get(Value *v) { - std::map<Value *, GEPCache>::iterator I = Map.find(v); - if (I == Map.end()) - I = Map.insert(std::pair<Value *, GEPCache>(v, GEPCache())).first; - return &I->second; - } - - PHINode *CachedPHINode; - std::map<Value *, GEPCache> Map; - }; - /// IVStrideUse - Keep track of one use of a strided induction variable, where /// the stride is stored externally. The Offset member keeps track of the /// offset from the IV, User is the actual user of the operand, and 'Operand' @@ -145,11 +130,6 @@ private: void StrengthReduceStridedIVUsers(Value *Stride, IVUsersOfOneStride &Uses, Loop *L, bool isOnlyStride); - - void strengthReduceGEP(GetElementPtrInst *GEPI, Loop *L, - GEPCache* GEPCache, - Instruction *InsertBefore, - std::set<Instruction*> &DeadInsts); void DeleteTriviallyDeadInstructions(std::set<Instruction*> &Insts); }; RegisterOpt<LoopStrengthReduce> X("loop-reduce", |

