summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/ScalarEvolution.cpp
diff options
context:
space:
mode:
authorSanjoy Das <sanjoy@playingwithpointers.com>2016-03-02 01:59:37 +0000
committerSanjoy Das <sanjoy@playingwithpointers.com>2016-03-02 01:59:37 +0000
commit9e5ebf145cf6cedc7538914fc9ee9daa961d2aa0 (patch)
treeba0070f3f3f1b2c9dfdf3c868f83dfb7340431b6 /llvm/lib/Analysis/ScalarEvolution.cpp
parent52968b58f5175dfb9facd6ca92edd4d709af2d05 (diff)
downloadbcm5719-llvm-9e5ebf145cf6cedc7538914fc9ee9daa961d2aa0.tar.gz
bcm5719-llvm-9e5ebf145cf6cedc7538914fc9ee9daa961d2aa0.zip
Remove "auto" to appease the MSVC bots
llvm-svn: 262448
Diffstat (limited to 'llvm/lib/Analysis/ScalarEvolution.cpp')
-rw-r--r--llvm/lib/Analysis/ScalarEvolution.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp
index d64f8367b60..b841f928448 100644
--- a/llvm/lib/Analysis/ScalarEvolution.cpp
+++ b/llvm/lib/Analysis/ScalarEvolution.cpp
@@ -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);
OpenPOWER on IntegriCloud