summaryrefslogtreecommitdiff
path: root/lib/Analysis
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-12-04 21:33:23 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-12-04 21:33:23 +0000
commit09906f3e1a1dc40be1f4a1381d0aaafed6657a8e (patch)
tree2b9a1498bc2b165701bca16eeada7cd3571ceea6 /lib/Analysis
parent85f5b5b9dcb16ddbb94b64bef02694872b02dc75 (diff)
downloadllvm-09906f3e1a1dc40be1f4a1381d0aaafed6657a8e.tar.gz
llvm-09906f3e1a1dc40be1f4a1381d0aaafed6657a8e.tar.bz2
llvm-09906f3e1a1dc40be1f4a1381d0aaafed6657a8e.tar.xz
Fix comment grammaro
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32198 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/ScalarEvolution.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp
index 52d9410b34..6f75fa0f0e 100644
--- a/lib/Analysis/ScalarEvolution.cpp
+++ b/lib/Analysis/ScalarEvolution.cpp
@@ -1925,9 +1925,9 @@ SCEVHandle ScalarEvolutionsImpl::getSCEVAtScope(SCEV *V, const Loop *L) {
}
}
- // Okay, this is a some expression that we cannot symbolically evaluate
+ // Okay, this is an expression that we cannot symbolically evaluate
// into a SCEV. Check to see if it's possible to symbolically evaluate
- // the arguments into constants, and if see, try to constant propagate the
+ // the arguments into constants, and if so, try to constant propagate the
// result. This is particularly useful for computing loop exit values.
if (CanConstantFold(I)) {
std::vector<Constant*> Operands;