hoist loop-invariant; NFCI
authorSanjay Patel <spatel@rotateright.com>
Sat, 13 Jun 2015 15:33:15 +0000 (15:33 +0000)
committerSanjay Patel <spatel@rotateright.com>
Sat, 13 Jun 2015 15:33:15 +0000 (15:33 +0000)
llvm-svn: 239681

llvm/lib/CodeGen/MachineCombiner.cpp

index 9af7a65..39adce3 100644 (file)
@@ -387,10 +387,9 @@ bool MachineCombiner::combineInstructions(MachineBasicBlock *MBB) {
         } else {
           // Cleanup instructions of the alternative code sequence. There is no
           // use for them.
-          for (auto *InstrPtr : InsInstrs) {
-            MachineFunction *MF = MBB->getParent();
+          MachineFunction *MF = MBB->getParent();
+          for (auto *InstrPtr : InsInstrs)
             MF->DeleteMachineInstr(InstrPtr);
-          }
         }
         InstrIdxForVirtReg.clear();
       }