[llvm-commits] [llvm] r149185 - /llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp

Nick Lewycky nicholas at mxc.ca
Sat Jan 28 15:33:44 PST 2012


Author: nicholas
Date: Sat Jan 28 17:33:44 2012
New Revision: 149185

URL: http://llvm.org/viewvc/llvm-project?rev=149185&view=rev
Log:
Fix typo.

Modified:
    llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp?rev=149185&r1=149184&r2=149185&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp Sat Jan 28 17:33:44 2012
@@ -1281,8 +1281,8 @@
   if (isa<SCEVSMaxExpr>(S) || isa<SCEVUMaxExpr>(S))
     return true;
 
-  // If we haven't recognized an expensive SCEV patter, assume its an expression
-  // produced by program code.
+  // If we haven't recognized an expensive SCEV pattern, assume it's an
+  // expression produced by program code.
   return false;
 }
 





More information about the llvm-commits mailing list