Skip to content

Commit 9f8bbd7

Browse files
committed
fixup! Address review comments
1 parent 3f6b660 commit 9f8bbd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/CodeGen/EVLIndVarSimplify.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ static uint32_t getVFFromIndVar(const SCEV *Step, const Function &F) {
9696
V = V.zextOrTrunc(Fixed->getBitWidth());
9797
uint64_t VF = V.udiv(*Fixed).getLimitedValue();
9898
if (VF && llvm::isUInt<32>(VF) &&
99-
// Make sure step is dividable by vscale.
99+
// Make sure step is divisible by vscale.
100100
V.urem(*Fixed).isZero())
101101
return static_cast<uint32_t>(VF);
102102
}

0 commit comments

Comments
 (0)