From: Tom Stellard Date: Thu, 10 May 2012 15:31:52 +0000 (-0400) Subject: radeon/llvm: Delete all instructions that have been custom lowered X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fa3747ff2ce929ceda499fde93927354685f20ef;p=mesa.git radeon/llvm: Delete all instructions that have been custom lowered --- diff --git a/src/gallium/drivers/radeon/R600ISelLowering.cpp b/src/gallium/drivers/radeon/R600ISelLowering.cpp index 52e2bd8d3f3..cfea2c3f3c0 100644 --- a/src/gallium/drivers/radeon/R600ISelLowering.cpp +++ b/src/gallium/drivers/radeon/R600ISelLowering.cpp @@ -98,7 +98,6 @@ MachineBasicBlock * R600TargetLowering::EmitInstrWithCustomInserter( BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(AMDIL::COPY)) .addOperand(MI->getOperand(0)) .addReg(ConstantReg); - MI->eraseFromParent(); break; } @@ -107,7 +106,6 @@ MachineBasicBlock * R600TargetLowering::EmitInstrWithCustomInserter( int64_t RegIndex = MI->getOperand(1).getImm(); addLiveIn(MI, MF, MRI, TII, AMDIL::R600_TReg32RegClass.getRegister(RegIndex)); - MI->eraseFromParent(); break; } case AMDIL::STORE_OUTPUT: @@ -121,7 +119,6 @@ MachineBasicBlock * R600TargetLowering::EmitInstrWithCustomInserter( if (!MRI.isLiveOut(OutputReg)) { MRI.addLiveOut(OutputReg); } - MI->eraseFromParent(); break; } @@ -132,11 +129,11 @@ MachineBasicBlock * R600TargetLowering::EmitInstrWithCustomInserter( unsigned ReservedReg = AMDIL::R600_TReg32RegClass.getRegister(ReservedIndex); MFI->ReservedRegs.push_back(ReservedReg); - MI->eraseFromParent(); break; } } + MI->eraseFromParent(); return BB; }