From 49208300cda3cd51d05abd4e84ffd35374acf293 Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Wed, 25 May 2016 21:03:31 +0000 Subject: [PATCH] fix typo; NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270760 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Vectorize/LoopVectorize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp index f7e48db4a42..584cc83c337 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -5971,7 +5971,7 @@ unsigned LoopVectorizationCostModel::getInstructionCost(Instruction *I, VectorTy->getVectorNumElements() * InterleaveFactor); // Holds the indices of existing members in an interleaved load group. - // An interleaved store group doesn't need this as it dones't allow gaps. + // An interleaved store group doesn't need this as it doesn't allow gaps. SmallVector Indices; if (LI) { for (unsigned i = 0; i < InterleaveFactor; i++)