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() {
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 ;
You can’t perform that action at this time.
0 commit comments