From b288dbc472cb3307b65ad402d43b4650be3ff929 Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Wed, 14 Oct 2020 16:08:45 -0400 Subject: [PATCH] llvm-reduce: Fix typo in status message --- tools/llvm-reduce/deltas/ReduceInstructions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/llvm-reduce/deltas/ReduceInstructions.cpp b/tools/llvm-reduce/deltas/ReduceInstructions.cpp index 4da3a345478..3e37ec5e175 100644 --- a/tools/llvm-reduce/deltas/ReduceInstructions.cpp +++ b/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); }