From a67a10589497dacad88043be4ee5f6753e380d41 Mon Sep 17 00:00:00 2001 From: Sanjoy Das Date: Tue, 15 Sep 2015 23:45:35 +0000 Subject: [PATCH] [IndVars] Rename variable; NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@247748 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/IndVarSimplify.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Transforms/Scalar/IndVarSimplify.cpp b/lib/Transforms/Scalar/IndVarSimplify.cpp index aad50160f52..c9fcf8ddf56 100644 --- a/lib/Transforms/Scalar/IndVarSimplify.cpp +++ b/lib/Transforms/Scalar/IndVarSimplify.cpp @@ -508,8 +508,8 @@ Value *IndVarSimplify::ExpandSCEVIfNeeded(SCEVExpander &Rewriter, const SCEV *S, Type *ResultTy) { // Before expanding S into an expensive LLVM expression, see if we can use an // already existing value as the expansion for S. - if (Value *RetValue = Rewriter.findExistingExpansion(S, InsertPt, L)) - return RetValue; + if (Value *ExistingValue = Rewriter.findExistingExpansion(S, InsertPt, L)) + return ExistingValue; // We didn't find anything, fall back to using SCEVExpander. return Rewriter.expandCodeFor(S, ResultTy, InsertPt); -- 2.34.1