ARM: Remove unused variable.
authorBenjamin Kramer <benny.kra@googlemail.com>
Mon, 8 Apr 2013 08:07:35 +0000 (08:07 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Mon, 8 Apr 2013 08:07:35 +0000 (08:07 +0000)
llvm-svn: 179001

llvm/lib/Target/ARM/Thumb2SizeReduction.cpp

index d50f5d9..4795aae 100644 (file)
@@ -926,13 +926,11 @@ bool Thumb2SizeReduce::ReduceMBB(MachineBasicBlock &MBB) {
   HighLatencyCPSR = false;
 
   // Check predecessors for the latest CPSRDef.
-  bool HasBackEdges = false;
   for (MachineBasicBlock::pred_iterator
        I = MBB.pred_begin(), E = MBB.pred_end(); I != E; ++I) {
     const MBBInfo &PInfo = BlockInfo[(*I)->getNumber()];
     if (!PInfo.Visited) {
       // Since blocks are visited in RPO, this must be a back-edge.
-      HasBackEdges = true;
       continue;
     }
     if (PInfo.HighLatencyCPSR) {