[PATCH] D91558: [Debugify] Skip debugifying on special/immutable passes

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 16 18:50:43 PST 2020


MaskRay accepted this revision.
MaskRay added a comment.
This revision is now accepted and ready to land.

LGTM.



================
Comment at: llvm/lib/Transforms/Utils/Debugify.cpp:67
+
+bool isIgnoredPass(StringRef PassID) {
+  return isSpecialPass(PassID, {"PassManager", "PassAdaptor",
----------------
https://llvm.org/docs/CodingStandards.html#anonymous-namespaces has rules about anonymous namespaces. Note that the existing usage does not stick with the rule.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D91558



More information about the llvm-commits mailing list