diff options
author | Wojciech Matyjewicz <wmatyjewicz@fastmail.fm> | 2008-02-13 12:21:32 +0000 |
---|---|---|
committer | Wojciech Matyjewicz <wmatyjewicz@fastmail.fm> | 2008-02-13 12:21:32 +0000 |
commit | a65ee03bb28fc9016cad3f725bd141428eb4d8a0 (patch) | |
tree | 4c2f312cf004cbae34ff2fd7aecf37a3bceeb0e1 /lib/Analysis/ScalarEvolution.cpp | |
parent | 3a4cbe2a41f2c4233df2f061d7bcd45d7b46e1a1 (diff) |
Fix typo. Thanks to Duncan for noticing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47062 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 4a440df07b..34c5bf6792 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -2533,7 +2533,7 @@ HowManyLessThans(SCEV *LHS, SCEV *RHS, const Loop *L, bool isSigned) { // We know the LHS is of the form {n,+,1} and the RHS is some loop-invariant // m. So, we count the number of iterations in which {n,+,1} < m is true. // Note that we cannot simply return max(m-n,0) because it's not safe to - // treat m-n as signed nor unsinged due to overflow possibility. + // treat m-n as signed nor unsigned due to overflow possibility. // First, we get the value of the LHS in the first iteration: n SCEVHandle Start = AddRec->getOperand(0); |