[llvm-commits] [llvm] r73903 - /llvm/trunk/lib/Analysis/ScalarEvolution.cpp
Dan Gohman
gohman at apple.com
Mon Jun 22 14:10:22 PDT 2009
Author: djg
Date: Mon Jun 22 16:10:22 2009
New Revision: 73903
URL: http://llvm.org/viewvc/llvm-project?rev=73903&view=rev
Log:
Fix some typos that Duncan noticed.
Modified:
llvm/trunk/lib/Analysis/ScalarEvolution.cpp
Modified: llvm/trunk/lib/Analysis/ScalarEvolution.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ScalarEvolution.cpp?rev=73903&r1=73902&r2=73903&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/ScalarEvolution.cpp (original)
+++ llvm/trunk/lib/Analysis/ScalarEvolution.cpp Mon Jun 22 16:10:22 2009
@@ -2791,7 +2791,7 @@
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 @@
}
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) {
More information about the llvm-commits
mailing list