[PATCH] D101278: [llvm-reduce] Add flag to only run specific passes

Samuel Eubanks via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 26 16:48:20 PDT 2021


swamulism added inline comments.


================
Comment at: llvm/tools/llvm-reduce/DeltaManager.cpp:58-85
+  if (PassName == "special-globals") {
+    reduceSpecialGlobalsDeltaPass(Tester);
+  } else if (PassName == "aliases") {
+    reduceAliasesDeltaPass(Tester);
+  } else if (PassName == "function-bodies") {
+    reduceFunctionBodiesDeltaPass(Tester);
+  } else if (PassName == "functions") {
----------------
Is it possible to add documentation for this either in a --help menu or elsewhere?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D101278/new/

https://reviews.llvm.org/D101278



More information about the llvm-commits mailing list