forked from OSchip/llvm-project
[IndVars] Hoist DataLayout load out of loop; NFC
llvm-svn: 258946
This commit is contained in:
parent
2f7a7447c2
commit
cddde58f1c
|
@ -1783,6 +1783,7 @@ static PHINode *FindLoopCounter(Loop *L, const SCEV *BECount,
|
|||
const SCEV *BestInit = nullptr;
|
||||
BasicBlock *LatchBlock = L->getLoopLatch();
|
||||
assert(LatchBlock && "needsLFTR should guarantee a loop latch");
|
||||
const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
|
||||
|
||||
for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I) {
|
||||
PHINode *Phi = cast<PHINode>(I);
|
||||
|
@ -1801,8 +1802,7 @@ static PHINode *FindLoopCounter(Loop *L, const SCEV *BECount,
|
|||
// AR may be wider than BECount. With eq/ne tests overflow is immaterial.
|
||||
// AR may not be a narrower type, or we may never exit.
|
||||
uint64_t PhiWidth = SE->getTypeSizeInBits(AR->getType());
|
||||
if (PhiWidth < BCWidth ||
|
||||
!L->getHeader()->getModule()->getDataLayout().isLegalInteger(PhiWidth))
|
||||
if (PhiWidth < BCWidth || !DL.isLegalInteger(PhiWidth))
|
||||
continue;
|
||||
|
||||
const SCEV *Step = dyn_cast<SCEVConstant>(AR->getStepRecurrence(*SE));
|
||||
|
|
Loading…
Reference in New Issue