1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

llvm-reduce: Fix typo in status message

This commit is contained in:
Matt Arsenault 2020-10-14 16:08:45 -04:00
parent 58e952431c
commit b288dbc472

View File

@ -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);
}