[llvm] r270760 - fix typo; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Wed May 25 14:03:32 PDT 2016


Author: spatel
Date: Wed May 25 16:03:31 2016
New Revision: 270760

URL: http://llvm.org/viewvc/llvm-project?rev=270760&view=rev
Log:
fix typo; NFC

Modified:
    llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp

Modified: llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp?rev=270760&r1=270759&r2=270760&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp (original)
+++ llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp Wed May 25 16:03:31 2016
@@ -5971,7 +5971,7 @@ unsigned LoopVectorizationCostModel::get
                           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++)




More information about the llvm-commits mailing list