[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:46 PDT 2025
================
@@ -36,14 +35,16 @@ static void removeVolatileInFunction(Oracle &O, Function &F) {
}
}
-static void removeVolatileInModule(Oracle &O, ReducerWorkItem &WorkItem) {
+void llvm::reduceVolatileInstructionsDeltaPass(Oracle &O,
+ ReducerWorkItem &WorkItem) {
for (Function &F : WorkItem.getModule())
removeVolatileInFunction(O, F);
}
-void llvm::reduceVolatileInstructionsDeltaPass(TestRunner &Test) {
- runDeltaPass(Test, removeVolatileInModule, "Reducing Volatile Instructions");
-}
+// void llvm::reduceVolatileInstructionsDeltaPass(TestRunner &Test, StringRef
+// PassMessage) {
+// runDeltaPass(Test, removeVolatileInModule, PassMessage);
+// }
----------------
arsenm wrote:
```suggestion
```
Commented out code
https://github.com/llvm/llvm-project/pull/133561
More information about the llvm-commits
mailing list