[PATCH] D67687: [CodeGen] Define an interface for the new pass manager. (new)

Arthur Eubanks via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 16 13:37:47 PDT 2020


aeubanks added a comment.

Can you update the commit description to say what's going on?



================
Comment at: llvm/include/llvm/CodeGen/MachinePassManager.h:120
+    PassConceptT *P = Passes.back().get();
+    addDoInitialization<PassT>(P);
+    addDoFinalization<PassT>(P);
----------------
Are we still doing the initialization/finalization thing?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D67687





More information about the llvm-commits mailing list