diff options
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index f7e48db4a42..584cc83c337 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/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<unsigned, 4> Indices; if (LI) { for (unsigned i = 0; i < InterleaveFactor; i++) |