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:
parent
3f1d874bb9
commit
97b2779195
@ -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.
|
||||
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user