From 77411bdfe3fbd39043ec6ebaa28b1361f11e58fa Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Sat, 6 Jun 2015 00:44:45 +0000 Subject: [PATCH] [TableGen] Fold variable declarations with their assignments. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239205 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/TableGen/Record.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/TableGen/Record.cpp b/lib/TableGen/Record.cpp index 6170a37e4ca..bb9e95d68b8 100644 --- a/lib/TableGen/Record.cpp +++ b/lib/TableGen/Record.cpp @@ -936,10 +936,8 @@ static Init *ForeachHelper(Init *LHS, Init *MHS, Init *RHS, RecTy *Type, std::vector > args; for (unsigned int i = 0; i < MHSd->getNumArgs(); ++i) { - Init *Arg; - std::string ArgName; - Arg = MHSd->getArg(i); - ArgName = MHSd->getArgName(i); + Init *Arg = MHSd->getArg(i); + std::string ArgName = MHSd->getArgName(i); // Process args Init *Result = EvaluateOperation(RHSo, LHS, Arg, Type, -- 2.34.1