diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-04 21:33:23 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-04 21:33:23 +0000 |
commit | e6328cab4876390e07213c58a0750a6f1ba41a89 (patch) | |
tree | 189ded7f385e11b5d59485d17aee05398c1387ea /llvm/lib/Analysis/ScalarEvolution.cpp | |
parent | cee005cbf232dcc2847db2e921b83bf99e7e69b7 (diff) | |
download | bcm5719-llvm-e6328cab4876390e07213c58a0750a6f1ba41a89.tar.gz bcm5719-llvm-e6328cab4876390e07213c58a0750a6f1ba41a89.zip |
Fix comment grammaro
llvm-svn: 32198
Diffstat (limited to 'llvm/lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 52d9410b340..6f75fa0f0e7 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/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; |