We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab9c2b1 commit 31a94bdCopy full SHA for 31a94bd
llvm/lib/Transforms/Vectorize/VPlan.cpp
@@ -790,9 +790,9 @@ VPlan::~VPlan() {
790
791
VPlanPtr VPlan::createInitialVPlan(const SCEV *TripCount, ScalarEvolution &SE,
792
BasicBlock *PH) {
793
- VPIRBasicBlock *Preheader = new VPIRBasicBlock(PH);
+ VPIRBasicBlock *Entry = new VPIRBasicBlock(PH);
794
VPBasicBlock *VecPreheader = new VPBasicBlock("vector.ph");
795
- auto Plan = std::make_unique<VPlan>(Preheader, VecPreheader);
+ auto Plan = std::make_unique<VPlan>(Entry, VecPreheader);
796
Plan->TripCount =
797
vputils::getOrCreateVPValueForSCEVExpr(*Plan, TripCount, SE);
798
// Create empty VPRegionBlock, to be filled during processing later.
0 commit comments