From 048fee970fdcb886d9c86789f2532789e62b2358 Mon Sep 17 00:00:00 2001 From: Andrew Trick Date: Mon, 26 Mar 2012 20:28:35 +0000 Subject: [PATCH] comment typo llvm-svn: 153462 --- lib/Transforms/Scalar/LoopStrengthReduce.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index 60b7e62729a..f2112446ade 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -2441,7 +2441,7 @@ void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper, if (!isCompatibleIVType(PrevIV, NextIV)) continue; - // A phi nodes terminates a chain. + // A phi node terminates a chain. if (isa(UserInst) && isa(IVChainVec[ChainIdx].back().UserInst)) continue;