[llvm] 952f43c - llvm-reduce: Fix typo in status message

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 16 06:48:35 PDT 2020


Author: Matt Arsenault
Date: 2020-10-16T09:48:00-04:00
New Revision: 952f43cb431ca77b52ba991b6dd7ecf834c75059

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

LOG: llvm-reduce: Fix typo in status message

Added: 
    

Modified: 
    llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp b/llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp
index 4da3a3454784..3e37ec5e1751 100644
--- a/llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp
+++ b/llvm/tools/llvm-reduce/deltas/ReduceInstructions.cpp
@@ -61,7 +61,7 @@ static unsigned countInstructions(Module *Program) {
 }
 
 void llvm::reduceInstructionsDeltaPass(TestRunner &Test) {
-  outs() << "*** Reducing Insructions...\n";
+  outs() << "*** Reducing Instructions...\n";
   unsigned InstCount = countInstructions(Test.getProgram());
   runDeltaPass(Test, InstCount, extractInstrFromModule);
 }


        


More information about the llvm-commits mailing list