forked from OSchip/llvm-project
[LoopVer] Remove unused pointer partition argument, NFC.
llvm-svn: 244527
This commit is contained in:
parent
034baf6154
commit
0bc068728e
|
@ -33,8 +33,7 @@ class LoopVersioning {
|
||||||
public:
|
public:
|
||||||
LoopVersioning(SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks,
|
LoopVersioning(SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks,
|
||||||
const LoopAccessInfo &LAI, Loop *L, LoopInfo *LI,
|
const LoopAccessInfo &LAI, Loop *L, LoopInfo *LI,
|
||||||
DominatorTree *DT,
|
DominatorTree *DT);
|
||||||
const SmallVector<int, 8> *PtrToPartition = nullptr);
|
|
||||||
|
|
||||||
/// \brief Performs the CFG manipulation part of versioning the loop including
|
/// \brief Performs the CFG manipulation part of versioning the loop including
|
||||||
/// the DominatorTree and LoopInfo updates.
|
/// the DominatorTree and LoopInfo updates.
|
||||||
|
|
|
@ -24,8 +24,7 @@ using namespace llvm;
|
||||||
|
|
||||||
LoopVersioning::LoopVersioning(
|
LoopVersioning::LoopVersioning(
|
||||||
SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks,
|
SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks,
|
||||||
const LoopAccessInfo &LAI, Loop *L, LoopInfo *LI, DominatorTree *DT,
|
const LoopAccessInfo &LAI, Loop *L, LoopInfo *LI, DominatorTree *DT)
|
||||||
const SmallVector<int, 8> *PtrToPartition)
|
|
||||||
: VersionedLoop(L), NonVersionedLoop(nullptr), Checks(std::move(Checks)),
|
: VersionedLoop(L), NonVersionedLoop(nullptr), Checks(std::move(Checks)),
|
||||||
LAI(LAI), LI(LI), DT(DT) {
|
LAI(LAI), LI(LI), DT(DT) {
|
||||||
assert(L->getExitBlock() && "No single exit block");
|
assert(L->getExitBlock() && "No single exit block");
|
||||||
|
|
Loading…
Reference in New Issue