Remove "auto" to appease the MSVC bots
authorSanjoy Das <sanjoy@playingwithpointers.com>
Wed, 2 Mar 2016 01:59:37 +0000 (01:59 +0000)
committerSanjoy Das <sanjoy@playingwithpointers.com>
Wed, 2 Mar 2016 01:59:37 +0000 (01:59 +0000)
llvm-svn: 262448

llvm/lib/Analysis/ScalarEvolution.cpp

index d64f8367b608623f462f4ae0329f07993461872d..b841f928448b26bc1c78186c2fddf3fd52408851 100644 (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);