public:
LoopVersioning(SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks,
const LoopAccessInfo &LAI, Loop *L, LoopInfo *LI,
- DominatorTree *DT,
- const SmallVector<int, 8> *PtrToPartition = nullptr);
+ DominatorTree *DT);
/// \brief Performs the CFG manipulation part of versioning the loop including
/// the DominatorTree and LoopInfo updates.
LoopVersioning::LoopVersioning(
SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks,
- const LoopAccessInfo &LAI, Loop *L, LoopInfo *LI, DominatorTree *DT,
- const SmallVector<int, 8> *PtrToPartition)
+ const LoopAccessInfo &LAI, Loop *L, LoopInfo *LI, DominatorTree *DT)
: VersionedLoop(L), NonVersionedLoop(nullptr), Checks(std::move(Checks)),
LAI(LAI), LI(LI), DT(DT) {
assert(L->getExitBlock() && "No single exit block");