diff options
author | Dan Gohman <gohman@apple.com> | 2009-06-22 21:10:22 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-06-22 21:10:22 +0000 |
commit | d32f5bf22d175c7e176c626c66fd7de71c240b65 (patch) | |
tree | 291ae88224c8d44a8cd8189cf6d6b3a3eaa66698 /lib/Analysis | |
parent | 524961e57fcd1080f3c78a8c97dc8364836f48a8 (diff) | |
download | external_llvm-d32f5bf22d175c7e176c626c66fd7de71c240b65.zip external_llvm-d32f5bf22d175c7e176c626c66fd7de71c240b65.tar.gz external_llvm-d32f5bf22d175c7e176c626c66fd7de71c240b65.tar.bz2 |
Fix some typos that Duncan noticed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73903 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r-- | lib/Analysis/ScalarEvolution.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index d2dbea0..d939480 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -2791,7 +2791,7 @@ ScalarEvolution::ComputeBackedgeTakenCount(const Loop *L) { if (NewBTI.Exact == CouldNotCompute) { // We couldn't compute an exact value for this exit, so - // we don't be able to compute an exact value for the loop. + // we won't be able to compute an exact value for the loop. CouldNotComputeBECount = true; BECount = CouldNotCompute; } else if (!CouldNotComputeBECount) { @@ -2807,7 +2807,7 @@ ScalarEvolution::ComputeBackedgeTakenCount(const Loop *L) { } if (NewBTI.Max == CouldNotCompute) { // We couldn't compute an maximum value for this exit, so - // we don't be able to compute an maximum value for the loop. + // we won't be able to compute an maximum value for the loop. CouldNotComputeMaxBECount = true; MaxBECount = CouldNotCompute; } else if (!CouldNotComputeMaxBECount) { |