[llvm-commits] [llvm] r73796 - /llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp

Dan Gohman gohman at apple.com
Fri Jun 19 16:41:37 PDT 2009


Author: djg
Date: Fri Jun 19 18:41:37 2009
New Revision: 73796

URL: http://llvm.org/viewvc/llvm-project?rev=73796&view=rev
Log:
Fix a typo in a comment that Frits von Bommel noticed.

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=73796&r1=73795&r2=73796&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp Fri Jun 19 18:41:37 2009
@@ -2118,7 +2118,7 @@
   const SCEVNAryExpr *Max = cast<SCEVNAryExpr>(IterationCount);
   if (Max != SE->getSCEV(Sel)) return Cond;
 
-  // Two handle a max with more than two operands, this optimization would
+  // To handle a max with more than two operands, this optimization would
   // require additional checking and setup.
   if (Max->getNumOperands() != 2)
     return Cond;





More information about the llvm-commits mailing list