[llvm] r251521 - Typo.
Chad Rosier via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 28 08:08:33 PDT 2015
Author: mcrosier
Date: Wed Oct 28 10:08:33 2015
New Revision: 251521
URL: http://llvm.org/viewvc/llvm-project?rev=251521&view=rev
Log:
Typo.
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=251521&r1=251520&r2=251521&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopIdiomRecognize.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LoopIdiomRecognize.cpp Wed Oct 28 10:08:33 2015
@@ -333,7 +333,7 @@ bool LoopIdiomRecognize::processLoopStor
return false;
// If the stored value is a strided load in the same loop with the same stride
- // this this may be transformable into a memcpy. This kicks in for stuff like
+ // this may be transformable into a memcpy. This kicks in for stuff like
// for (i) A[i] = B[i];
if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
const SCEVAddRecExpr *LoadEv =
More information about the llvm-commits
mailing list