[llvm] cfd155c - [SelectionDAG] Fix typo in option help

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 15 11:27:45 PDT 2021


Author: Mingming Liu
Date: 2021-10-15T11:27:40-07:00
New Revision: cfd155c41bf2a3a90f196cd9821fdef2a5f1d962

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

LOG: [SelectionDAG] Fix typo in option help

Reviewed By: MaskRay

Differential Revision: https://reviews.llvm.org/D111867

Added: 
    

Modified: 
    llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index 7272ac9d9b403..549eecdc57b2e 100644
--- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -129,12 +129,12 @@ static cl::opt<unsigned> StoreMergeDependenceLimit(
 
 static cl::opt<bool> EnableReduceLoadOpStoreWidth(
     "combiner-reduce-load-op-store-width", cl::Hidden, cl::init(true),
-    cl::desc("DAG cominber enable reducing the width of load/op/store "
+    cl::desc("DAG combiner enable reducing the width of load/op/store "
              "sequence"));
 
 static cl::opt<bool> EnableShrinkLoadReplaceStoreWithStore(
     "combiner-shrink-load-replace-store-with-store", cl::Hidden, cl::init(true),
-    cl::desc("DAG cominber enable load/<replace bytes>/store with "
+    cl::desc("DAG combiner enable load/<replace bytes>/store with "
              "a narrower store"));
 
 namespace {


        


More information about the llvm-commits mailing list