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 | 743ab498d8cc4e828c79a68a6184eb8aeb95b4a1 (patch) | |
tree | f4d7ffd0eeb92d4cca53f5e6941877f28e95338e /lib/Analysis/ScalarEvolution.cpp | |
parent | 03ad6982c458fd6f982079e11c07419bf17efedc (diff) |
Delete an unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73865 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | lib/Analysis/ScalarEvolution.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 272aeb3a6b..15d1c24763 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/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); |