[SCEV][NFC] Fix typo in comment
authorMax Kazantsev <mkazantsev@azul.com>
Wed, 23 Nov 2022 07:38:24 +0000 (14:38 +0700)
committerMax Kazantsev <mkazantsev@azul.com>
Wed, 23 Nov 2022 07:38:24 +0000 (14:38 +0700)
llvm/lib/Analysis/ScalarEvolution.cpp

index 6bd4aa3..2d17dde 100644 (file)
@@ -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;