From: Max Kazantsev Date: Wed, 23 Nov 2022 07:38:24 +0000 (+0700) Subject: [SCEV][NFC] Fix typo in comment X-Git-Tag: upstream/17.0.6~26748 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f5eeda037f446db769b599569fe031511c0f38dd;p=platform%2Fupstream%2Fllvm.git [SCEV][NFC] Fix typo in comment --- diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 6bd4aa3..2d17dde 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -8605,7 +8605,7 @@ ScalarEvolution::ExitLimit::ExitLimit( : ExactNotTaken(E), MaxNotTaken(M), MaxOrZero(MaxOrZero) { // If we prove the max count is zero, so is the symbolic bound. This happens // in practice due to differences in a) how context sensitive we've chosen - // to be and b) how we reason about bounds impied by UB. + // to be and b) how we reason about bounds implied by UB. if (MaxNotTaken->isZero()) ExactNotTaken = MaxNotTaken;