Remove unused variable to get rid of warning.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156466 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Craig Topper 2012-05-09 07:08:58 +00:00
parent 2b409b65d4
commit b12af898c3

View File

@ -3902,7 +3902,7 @@ void ObjCARCContract::ContractRelease(Instruction *Release,
if (Load->getParent() != BB) return;
// Walk down to find the store and the release, which may be in either order.
BasicBlock::iterator I = Load, End = BB->end();
BasicBlock::iterator I = Load;
++I;
AliasAnalysis::Location Loc = AA->getLocation(Load);
StoreInst *Store = 0;