diff options
author | Dan Gohman <gohman@apple.com> | 2009-12-19 01:46:34 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-12-19 01:46:34 +0000 |
commit | 876f45d7d26bedebe632ae567954f8a5e9702b8a (patch) | |
tree | df3bc36f44673f330a4e0dccc7ac1f696db7df6c /llvm/lib/Analysis/ScalarEvolution.cpp | |
parent | b0da63da1e8c75d25e82445ec146627c9db08df6 (diff) | |
download | bcm5719-llvm-876f45d7d26bedebe632ae567954f8a5e9702b8a.tar.gz bcm5719-llvm-876f45d7d26bedebe632ae567954f8a5e9702b8a.zip |
Fix a spello in a comment that Nick spotted.
llvm-svn: 91742
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 e1842eb4871..3a09f2f9d7b 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -1460,7 +1460,7 @@ const SCEV *ScalarEvolution::getAddExpr(SmallVectorImpl<const SCEV *> &Ops, AddRec->op_end()); AddRecOps[0] = getAddExpr(LIOps); - // It's tempting to propogate NUW/NSW flags here, but nuw/nsw addition + // It's tempting to propagate NUW/NSW flags here, but nuw/nsw addition // is not associative so this isn't necessarily safe. const SCEV *NewRec = getAddRecExpr(AddRecOps, AddRec->getLoop()); @@ -1639,7 +1639,7 @@ const SCEV *ScalarEvolution::getMulExpr(SmallVectorImpl<const SCEV *> &Ops, } } - // It's tempting to propogate the NSW flag here, but nsw multiplication + // It's tempting to propagate the NSW flag here, but nsw multiplication // is not associative so this isn't necessarily safe. const SCEV *NewRec = getAddRecExpr(NewOps, AddRec->getLoop()); |