[llvm] r364159 - Fix typo in comment; NFC
Sanjoy Das via llvm-commits
llvm-commits at lists.llvm.org
Sun Jun 23 12:22:13 PDT 2019
Author: sanjoy
Date: Sun Jun 23 12:22:13 2019
New Revision: 364159
URL: http://llvm.org/viewvc/llvm-project?rev=364159&view=rev
Log:
Fix typo in comment; NFC
Modified:
llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp?rev=364159&r1=364158&r2=364159&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp Sun Jun 23 12:22:13 2019
@@ -1312,7 +1312,7 @@ WidenIV::WidenedRecTy WidenIV::getWideRe
return {AddRec, ExtKind};
}
-/// This IV user cannot be widen. Replace this use of the original narrow IV
+/// This IV user cannot be widened. Replace this use of the original narrow IV
/// with a truncation of the new wide IV to isolate and eliminate the narrow IV.
static void truncateIVUse(NarrowIVDefUse DU, DominatorTree *DT, LoopInfo *LI) {
auto *InsertPt = getInsertPointForUses(DU.NarrowUse, DU.NarrowDef, DT, LI);
More information about the llvm-commits
mailing list