Remove unused variable to get rid of warning.

llvm-svn: 156466
This commit is contained in:
Craig Topper 2012-05-09 07:08:58 +00:00
parent 574e68feec
commit 749c95a942

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;