forked from OSchip/llvm-project
Qualify getRangeForAffineAR with this-> for MSVC
llvm-svn: 262453
This commit is contained in:
parent
e0e6e48b29
commit
eca1b53b95
|
@ -4583,9 +4583,9 @@ ConstantRange ScalarEvolution::getRangeViaFactoring(const SCEV *Start,
|
|||
const SCEV *FalseStep = this->getConstant(*StepPattern.FalseValue);
|
||||
|
||||
ConstantRange TrueRange =
|
||||
getRangeForAffineAR(TrueStart, TrueStep, MaxBECount, BitWidth);
|
||||
this->getRangeForAffineAR(TrueStart, TrueStep, MaxBECount, BitWidth);
|
||||
ConstantRange FalseRange =
|
||||
getRangeForAffineAR(FalseStart, FalseStep, MaxBECount, BitWidth);
|
||||
this->getRangeForAffineAR(FalseStart, FalseStep, MaxBECount, BitWidth);
|
||||
|
||||
return TrueRange.unionWith(FalseRange);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue