[llvm] f5eeda0 - [SCEV][NFC] Fix typo in comment

Max Kazantsev via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 22 23:38:57 PST 2022


Author: Max Kazantsev
Date: 2022-11-23T14:38:24+07:00
New Revision: f5eeda037f446db769b599569fe031511c0f38dd

URL: https://github.com/llvm/llvm-project/commit/f5eeda037f446db769b599569fe031511c0f38dd
DIFF: https://github.com/llvm/llvm-project/commit/f5eeda037f446db769b599569fe031511c0f38dd.diff

LOG: [SCEV][NFC] Fix typo in comment

Added: 
    

Modified: 
    llvm/lib/Analysis/ScalarEvolution.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp
index 6bd4aa32cd8e9..2d17dde46c69e 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 
diff erences 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;
 


        


More information about the llvm-commits mailing list