Address Pete's review comment and define OrigArg on its own line.

This is a follow-up to r281419.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281421 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Akira Hatanaka 2016-09-13 23:53:43 +00:00
parent 90a2aecbed
commit 3cb3e3cdbc

View File

@ -601,7 +601,8 @@ bool ObjCARCContract::runOnFunction(Function &F) {
};
Value *Arg = cast<CallInst>(Inst)->getArgOperand(0), *OrigArg = Arg;
Value *Arg = cast<CallInst>(Inst)->getArgOperand(0);
Value *OrigArg = Arg;
// TODO: Change this to a do-while.
for (;;) {