[PATCH] D110438: [BPI] Keep BPI available in loop passes through LoopStandardAnalysisResults

Anna Thomas via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 28 13:04:57 PDT 2021


anna added inline comments.


================
Comment at: llvm/lib/Passes/PassBuilder.cpp:1305
           InnerPipeline, [](auto Pipeline) { return Pipeline.Name == "licm"; });
+      bool UseBPI = llvm::any_of(InnerPipeline, [](auto Pipeline) {
+        return Pipeline.Name == "loop-predication";
----------------
Just for ease of review compared to previous LGTM'ed version: this is the (only) update done vs previous diff. 


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D110438



More information about the llvm-commits mailing list