1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

Remove "auto" to appease the MSVC bots

llvm-svn: 262448
This commit is contained in:
Sanjoy Das 2016-03-02 01:59:37 +00:00
parent ceef9d2175
commit 559acdcb2c

View File

@ -4577,10 +4577,10 @@ ConstantRange ScalarEvolution::getRangeViaFactoring(const SCEV *Start,
// from deep in the call stack, and calling getSCEV (on a sext instruction,
// say) can end up caching a suboptimal value.
auto TrueRange = getRangeForAffineAR(
ConstantRange TrueRange = getRangeForAffineAR(
getConstant(*StartPattern.TrueValue + Offset),
getConstant(*StepPattern.TrueValue), MaxBECount, BitWidth);
auto FalseRange = getRangeForAffineAR(
ConstantRange FalseRange = getRangeForAffineAR(
getConstant(*StartPattern.FalseValue + Offset),
getConstant(*StepPattern.FalseValue), MaxBECount, BitWidth);