[PATCH] D28076: [PM] Add support for building a default AA pipeline to the PassBuilder.
Chandler Carruth via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 23 12:49:51 PST 2016
chandlerc added inline comments.
================
Comment at: lib/Passes/PassBuilder.cpp:1115-1119
+ // manager with our default one.
+ if (PipelineText == "default") {
+ AA = buildDefaultAAPipeline();
+ return true;
+ }
----------------
davide wrote:
> We need similar logic in lld (we already have a flag, `-lto-newpm-aa-pipeline=`.
Cool! Thanks for the review, and if someone doesn't beat me to it I'll but adding use of this to LLD in my queue.
Repository:
rL LLVM
https://reviews.llvm.org/D28076
More information about the llvm-commits
mailing list