From: Akira Hatanaka Date: Tue, 13 Sep 2016 23:53:43 +0000 (+0000) Subject: Address Pete's review comment and define OrigArg on its own line. X-Git-Tag: llvmorg-4.0.0-rc1~9861 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6d5a29489a7d3e323cd127f1ee4566b3ebd9f6c7;p=platform%2Fupstream%2Fllvm.git Address Pete's review comment and define OrigArg on its own line. This is a follow-up to r281419. llvm-svn: 281421 --- diff --git a/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp b/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp index c2cc236..23c1f59 100644 --- a/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp +++ b/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp @@ -601,7 +601,8 @@ bool ObjCARCContract::runOnFunction(Function &F) { }; - Value *Arg = cast(Inst)->getArgOperand(0), *OrigArg = Arg; + Value *Arg = cast(Inst)->getArgOperand(0); + Value *OrigArg = Arg; // TODO: Change this to a do-while. for (;;) {