[llvm] [llvm-reduce]: print short form, actionable names in the log (PR #133561)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 29 01:31:44 PDT 2025
================
@@ -151,13 +149,10 @@ static void extractInstrFromFunction(Oracle &O, MachineFunction &MF) {
MI->eraseFromParent();
}
-static void extractInstrFromModule(Oracle &O, ReducerWorkItem &WorkItem) {
+void llvm::reduceInstructionsMIRDeltaPass(Oracle &O,
+ ReducerWorkItem &WorkItem) {
for (const Function &F : WorkItem.getModule()) {
if (MachineFunction *MF = WorkItem.MMI->getMachineFunction(F))
extractInstrFromFunction(O, *MF);
}
-}
-
-void llvm::reduceInstructionsMIRDeltaPass(TestRunner &Test) {
- runDeltaPass(Test, extractInstrFromModule, "Reducing Instructions");
-}
+}
----------------
arsenm wrote:
```suggestion
}
```
https://github.com/llvm/llvm-project/pull/133561
More information about the llvm-commits
mailing list