Skip to content

Commit be95e16

Browse files
authored
[NFC] Fix typos in LoopVersioningLICM.cpp (#116099)
1 parent 5ac624c commit be95e16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,14 +207,14 @@ bool LoopVersioningLICM::legalLoopStructure() {
207207
}
208208
// Loop depth more then LoopDepthThreshold are not allowed
209209
if (CurLoop->getLoopDepth() > LoopDepthThreshold) {
210-
LLVM_DEBUG(dbgs() << " loop depth is more then threshold\n");
210+
LLVM_DEBUG(dbgs() << " loop depth is more than threshold\n");
211211
return false;
212212
}
213213
// We need to be able to compute the loop trip count in order
214214
// to generate the bound checks.
215215
const SCEV *ExitCount = SE->getBackedgeTakenCount(CurLoop);
216216
if (isa<SCEVCouldNotCompute>(ExitCount)) {
217-
LLVM_DEBUG(dbgs() << " loop does not has trip count\n");
217+
LLVM_DEBUG(dbgs() << " loop does not have trip count\n");
218218
return false;
219219
}
220220
return true;

0 commit comments

Comments
 (0)