From: Sanjoy Das Date: Tue, 15 Sep 2015 23:45:35 +0000 (+0000) Subject: [IndVars] Rename variable; NFC. X-Git-Tag: android-x86-7.1-r4~43549 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a67a10589497dacad88043be4ee5f6753e380d41;p=android-x86%2Fexternal-llvm.git [IndVars] Rename variable; NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@247748 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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);