[PATCH] D119897: [opt] Pin region viewer passes to legacy PM.

Michael Kruse via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 15 15:05:53 PST 2022


Meinersbur created this revision.
Meinersbur added a reviewer: aeubanks.
Meinersbur requested review of this revision.
Herald added a project: LLVM.

The RegionPrinter, RegionOnlyPrinter, RegionViewer and RegionOnlyViewer passes have not yet been ported to the new pass manager.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D119897

Files:
  llvm/tools/opt/opt.cpp


Index: llvm/tools/opt/opt.cpp
===================================================================
--- llvm/tools/opt/opt.cpp
+++ llvm/tools/opt/opt.cpp
@@ -498,7 +498,9 @@
       "generic-to-nvvm",      "expandmemcmp",
       "loop-reduce",          "lower-amx-type",
       "pre-amx-config",       "lower-amx-intrinsics",
-      "polyhedral-info",      "replace-with-veclib"};
+      "polyhedral-info",      "replace-with-veclib",
+      "dot-regions",          "dot-regions-only",
+      "view-regions",         "view-regions-only"};
   for (const auto &P : PassNamePrefix)
     if (Pass.startswith(P))
       return true;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D119897.409068.patch
Type: text/x-patch
Size: 625 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220215/0215cffb/attachment.bin>


More information about the llvm-commits mailing list