[llvm] r301878 - Empty Space. NFC

Xin Tong via llvm-commits llvm-commits at lists.llvm.org
Mon May 1 16:08:19 PDT 2017


Author: trentxintong
Date: Mon May  1 18:08:19 2017
New Revision: 301878

URL: http://llvm.org/viewvc/llvm-project?rev=301878&view=rev
Log:
Empty Space. NFC

Modified:
    llvm/trunk/lib/Transforms/Scalar/LoopIdiomRecognize.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/LoopIdiomRecognize.cpp?rev=301878&r1=301877&r2=301878&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopIdiomRecognize.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LoopIdiomRecognize.cpp Mon May  1 18:08:19 2017
@@ -856,7 +856,7 @@ bool LoopIdiomRecognize::processLoopStri
 
 /// If the stored value is a strided load in the same loop with the same stride
 /// this may be transformable into a memcpy.  This kicks in for stuff like
-///   for (i) A[i] = B[i];
+/// for (i) A[i] = B[i];
 bool LoopIdiomRecognize::processLoopStoreOfLoopLoad(StoreInst *SI,
                                                     const SCEV *BECount) {
   assert(SI->isSimple() && "Expected only non-volatile stores.");




More information about the llvm-commits mailing list