[llvm] 99f2779 - [NFC] Fix typo function -> module

Arthur Eubanks via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 29 16:11:06 PDT 2020


Author: Arthur Eubanks
Date: 2020-10-29T16:10:56-07:00
New Revision: 99f2779c18c8dcd24eaa7edf1f32c59593954cf1

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

LOG: [NFC] Fix typo function -> module

Added: 
    

Modified: 
    llvm/tools/opt/NewPMDriver.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/tools/opt/NewPMDriver.cpp b/llvm/tools/opt/NewPMDriver.cpp
index 98a8454f9528..e97d91aa1d3b 100644
--- a/llvm/tools/opt/NewPMDriver.cpp
+++ b/llvm/tools/opt/NewPMDriver.cpp
@@ -94,12 +94,12 @@ static cl::opt<std::string> VectorizerStartEPPipeline(
     cl::Hidden);
 static cl::opt<std::string> PipelineStartEPPipeline(
     "passes-ep-pipeline-start",
-    cl::desc("A textual description of the function pass pipeline inserted at "
+    cl::desc("A textual description of the module pass pipeline inserted at "
              "the PipelineStart extension point into default pipelines"),
     cl::Hidden);
 static cl::opt<std::string> OptimizerLastEPPipeline(
     "passes-ep-optimizer-last",
-    cl::desc("A textual description of the function pass pipeline inserted at "
+    cl::desc("A textual description of the module pass pipeline inserted at "
              "the OptimizerLast extension point into default pipelines"),
     cl::Hidden);
 


        


More information about the llvm-commits mailing list