[PATCH] D78571: [Attributor][PM] Introduce `-attributor-enable={none,cgscc,module,all}`

Roman Lebedev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 21 10:14:53 PDT 2020


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

Looks reasonable to me



================
Comment at: llvm/include/llvm/Transforms/IPO/Attributor.h:2868-2869
+  NONE = 0,
+  MODULE = 1,
+  CGSCC = 2,
+  ALL = MODULE | CGSCC
----------------
1 << 0
1 << 1



Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D78571





More information about the llvm-commits mailing list