File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
llvm/lib/Transforms/Scalar Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -207,14 +207,14 @@ bool LoopVersioningLICM::legalLoopStructure() {
207
207
}
208
208
// Loop depth more then LoopDepthThreshold are not allowed
209
209
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 " );
211
211
return false ;
212
212
}
213
213
// We need to be able to compute the loop trip count in order
214
214
// to generate the bound checks.
215
215
const SCEV *ExitCount = SE->getBackedgeTakenCount (CurLoop);
216
216
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 " );
218
218
return false ;
219
219
}
220
220
return true ;
You can’t perform that action at this time.
0 commit comments