1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Fix some typos that Duncan noticed.

llvm-svn: 73903
This commit is contained in:
Dan Gohman 2009-06-22 21:10:22 +00:00
parent 2814371831
commit 54899b84bc

View 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) {