Fix some typos that Duncan noticed.
authorDan Gohman <gohman@apple.com>
Mon, 22 Jun 2009 21:10:22 +0000 (21:10 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 22 Jun 2009 21:10:22 +0000 (21:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73903 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ScalarEvolution.cpp

index d2dbea0d92dc7db1ff89d73db41a4b4f368137b3..d9394805c8b7bdc8c589da2c9c1c6222ab112057 100644 (file)
@@ -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) {