diff options
author | Dan Gohman <gohman@apple.com> | 2009-06-22 00:19:17 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-06-22 00:19:17 +0000 |
commit | 13037149b962d667ccb9c4440897b531635b86cf (patch) | |
tree | 4dccae1d3efd2a28abe15fa95545002a4b540468 /llvm/lib/Analysis/ScalarEvolution.cpp | |
parent | 78ea89e161c0b40b730020c94121ed2922933603 (diff) | |
download | bcm5719-llvm-13037149b962d667ccb9c4440897b531635b86cf.tar.gz bcm5719-llvm-13037149b962d667ccb9c4440897b531635b86cf.zip |
Delete an unused variable.
llvm-svn: 73865
Diffstat (limited to 'llvm/lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 272aeb3a6bd..15d1c247639 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -3832,7 +3832,6 @@ HowManyLessThans(const SCEV *LHS, const SCEV *RHS, // FORNOW: We only support unit strides. unsigned BitWidth = getTypeSizeInBits(AddRec->getType()); SCEVHandle Step = AddRec->getStepRecurrence(*this); - SCEVHandle NegOne = getIntegerSCEV(-1, AddRec->getType()); // TODO: handle non-constant strides. const SCEVConstant *CStep = dyn_cast<SCEVConstant>(Step); |