From 724f825f96ab44280a5864e67e8151a7792e393d Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 19 Jun 2009 23:41:37 +0000 Subject: [PATCH] Fix a typo in a comment that Frits von Bommel noticed. llvm-svn: 73796 --- llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp index f13d7a7ba88a..b976bc898c0f 100644 --- a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/llvm/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;