From: Dan Gohman Date: Fri, 19 Jun 2009 23:41:37 +0000 (+0000) Subject: Fix a typo in a comment that Frits von Bommel noticed. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=224a19c490da17c6ed75245a4a7ef49cd25f6cdf;p=oota-llvm.git Fix a typo in a comment that Frits von Bommel noticed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73796 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index f13d7a7ba88..b976bc898c0 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -2118,7 +2118,7 @@ ICmpInst *LoopStrengthReduce::OptimizeMax(Loop *L, ICmpInst *Cond, const SCEVNAryExpr *Max = cast(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;