[PATCH] D102002: [PassManager] unify vector passes between regular and LTO pipelines
Vyacheslav Zakharin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri May 7 16:43:01 PDT 2021
vzakhari added inline comments.
================
Comment at: llvm/lib/Passes/PassBuilder.cpp:1263-1268
FPM.addPass(SimplifyCFGPass(SimplifyCFGOptions()
.forwardSwitchCondToPhi(true)
.convertSwitchToLookupTable(true)
.needCanonicalLoops(false)
.hoistCommonInsts(true)
.sinkCommonInsts(true)));
----------------
The code did not look like this at the place where https://reviews.llvm.org/rGfefcb1f878c2dad435af604955661ca02a5302de inserted a call to `addVectorPasses(... , /* IsLTO */ true)`. It was only `.hoistCommonInsts(true)` - was this an expected change in behavior?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D102002/new/
https://reviews.llvm.org/D102002
More information about the llvm-commits
mailing list