From: Craig Topper Date: Sat, 6 Jun 2015 00:44:45 +0000 (+0000) Subject: [TableGen] Fold variable declarations with their assignments. NFC X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=77411bdfe3fbd39043ec6ebaa28b1361f11e58fa;p=oota-llvm.git [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 --- 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,