[llvm] cd24665 - [NFC] Fix typo in statistic description

Max Kazantsev via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 11 00:19:21 PDT 2023


Author: Max Kazantsev
Date: 2023-04-11T14:18:53+07:00
New Revision: cd24665f13ae8825aaaef3e333dda20a21e84eab

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

LOG: [NFC] Fix typo in statistic description

Added: 
    

Modified: 
    llvm/lib/Transforms/Scalar/LICM.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Scalar/LICM.cpp b/llvm/lib/Transforms/Scalar/LICM.cpp
index bb450b2e8642..34b3c1a70be4 100644
--- a/llvm/lib/Transforms/Scalar/LICM.cpp
+++ b/llvm/lib/Transforms/Scalar/LICM.cpp
@@ -104,7 +104,7 @@ STATISTIC(NumPromotionCandidates, "Number of promotion candidates");
 STATISTIC(NumLoadPromoted, "Number of load-only promotions");
 STATISTIC(NumLoadStorePromoted, "Number of load and store promotions");
 STATISTIC(NumMinMaxHoisted,
-          "Number min/max expressions hoisted out of the loop");
+          "Number of min/max expressions hoisted out of the loop");
 
 /// Memory promotion is enabled by default.
 static cl::opt<bool>


        


More information about the llvm-commits mailing list