From: Craig Topper Date: Wed, 9 May 2012 07:08:58 +0000 (+0000) Subject: Remove unused variable to get rid of warning. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b12af898c317e64bba3ac1692073c812503e01c4;p=oota-llvm.git 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 --- diff --git a/lib/Transforms/Scalar/ObjCARC.cpp b/lib/Transforms/Scalar/ObjCARC.cpp index 8f8c0e8acf2..5d6e1a7d9f5 100644 --- a/lib/Transforms/Scalar/ObjCARC.cpp +++ b/lib/Transforms/Scalar/ObjCARC.cpp @@ -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;