remove unnecessary casts; NFCI

llvm-svn: 239678
This commit is contained in:
Sanjay Patel
2015-06-13 15:06:33 +00:00
parent 6df6c75b61
commit 85924e5bf3

View File

@@ -373,8 +373,7 @@ bool MachineCombiner::combineInstructions(MachineBasicBlock *MBB) {
InstrIdxForVirtReg) &&
preservesResourceLen(MBB, BlockTrace, InsInstrs, DelInstrs))) {
for (auto *InstrPtr : InsInstrs)
MBB->insert((MachineBasicBlock::iterator) & MI,
(MachineInstr *)InstrPtr);
MBB->insert((MachineBasicBlock::iterator) &MI, InstrPtr);
for (auto *InstrPtr : DelInstrs)
InstrPtr->eraseFromParentAndMarkDBGValuesForRemoval();
@@ -390,7 +389,7 @@ bool MachineCombiner::combineInstructions(MachineBasicBlock *MBB) {
// use for them.
for (auto *InstrPtr : InsInstrs) {
MachineFunction *MF = MBB->getParent();
MF->DeleteMachineInstr((MachineInstr *)InstrPtr);
MF->DeleteMachineInstr(InstrPtr);
}
}
InstrIdxForVirtReg.clear();