1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

[LoopVer] Remove unused pointer partition argument, NFC.

llvm-svn: 244527
This commit is contained in:
Adam Nemet 2015-08-10 23:05:31 +00:00
parent 3f1d874bb9
commit 97b2779195
2 changed files with 2 additions and 4 deletions

View File

@ -33,8 +33,7 @@ class LoopVersioning {
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.

View 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");