[LoopVer] Remove unused pointer partition argument, NFC.
[oota-llvm.git] / lib / Transforms / Utils / LoopVersioning.cpp
index 9a2ce9d6109852bee08a78d9b3a7d0b5573afb1a..2fc0771f1525d9d52d7d08358212f8c85be3f03c 100644 (file)
@@ -24,8 +24,7 @@ using namespace llvm;
 
 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");