diff options
author | Andrew Trick <atrick@apple.com> | 2011-04-27 18:17:36 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-04-27 18:17:36 +0000 |
commit | a2a162077c80ebacc7c1b0bd92892ae207f1231f (patch) | |
tree | e3812434bffbe20f4bf92f16b595c843a92cc0b0 /lib/Analysis/ScalarEvolution.cpp | |
parent | 7878f37cf0dc76689c550727d236ee942b66343f (diff) |
Corrects an old, old typo in a case that doesn't seem to be reached in practice.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130316 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | lib/Analysis/ScalarEvolution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 1bef857e70..bab4619894 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -2015,7 +2015,7 @@ const SCEV *ScalarEvolution::getUDivExpr(const SCEV *LHS, } } // (A+B)/C --> (A/C + B/C) if safe and A/C and B/C can be folded. - if (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(LHS)) { + if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(LHS)) { SmallVector<const SCEV *, 4> Operands; for (unsigned i = 0, e = A->getNumOperands(); i != e; ++i) Operands.push_back(getZeroExtendExpr(A->getOperand(i), ExtTy)); |