mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 07:09:08 +00:00
Remove unused variable to get rid of warning.
llvm-svn: 156466
This commit is contained in:
parent
574e68feec
commit
749c95a942
@ -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
Block a user