forked from OSchip/llvm-project
Remove unused variable to get rid of warning.
llvm-svn: 156466
This commit is contained in:
parent
25498d0afa
commit
28540adfcf
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue