[llvm-commits] [llvm] r66065 - /llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp
Dan Gohman
gohman at apple.com
Wed Mar 4 12:50:24 PST 2009
Author: djg
Date: Wed Mar 4 14:50:23 2009
New Revision: 66065
URL: http://llvm.org/viewvc/llvm-project?rev=66065&view=rev
Log:
Fix this comment.
Modified:
llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp?rev=66065&r1=66064&r2=66065&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp Wed Mar 4 14:50:23 2009
@@ -460,7 +460,8 @@
// If Start contains an SCEVAddRecExpr from a different loop, other than an
// outer loop of the current loop, reject it. SCEV has no concept of
- // operating on one loop at a time so don't confuse it with such expressions.
+ // operating on more than one loop at a time so don't confuse it with such
+ // expressions.
if (containsAddRecFromDifferentLoop(AddRec->getOperand(0), L))
return false;
More information about the llvm-commits
mailing list