diff --git a/lib/Analysis/MemoryDependenceAnalysis.cpp b/lib/Analysis/MemoryDependenceAnalysis.cpp index 1225ebbe884..fa439549257 100644 --- a/lib/Analysis/MemoryDependenceAnalysis.cpp +++ b/lib/Analysis/MemoryDependenceAnalysis.cpp @@ -255,4 +255,6 @@ void MemoryDependenceAnalysis::removeInstruction(Instruction* rem) { reverseDep.erase(I); I = reverseDep.find(rem); } + + getAnalysis().deleteValue(rem); } diff --git a/lib/Transforms/Scalar/FastDSE.cpp b/lib/Transforms/Scalar/FastDSE.cpp index e2d81794d81..e353aef7f92 100644 --- a/lib/Transforms/Scalar/FastDSE.cpp +++ b/lib/Transforms/Scalar/FastDSE.cpp @@ -70,7 +70,6 @@ namespace { FunctionPass *llvm::createFastDeadStoreEliminationPass() { return new FDSE(); } bool FDSE::runOnBasicBlock(BasicBlock &BB) { - AliasAnalysis &AA = getAnalysis(); MemoryDependenceAnalysis& MD = getAnalysis(); // Record the last-seen store to this pointer @@ -101,7 +100,6 @@ bool FDSE::runOnBasicBlock(BasicBlock &BB) { // Remove it! MD.removeInstruction(last); - AA.deleteValue(last); // DCE instructions only used to calculate that store if (Instruction* D = dyn_cast(last->getOperand(0))) @@ -157,7 +155,6 @@ bool FDSE::handleFreeWithNonTrivialDependency(FreeInst* F, StoreInst* dependency if (A == AliasAnalysis::MustAlias) { // Remove it! MD.removeInstruction(dependency); - AA.deleteValue(dependency); // DCE instructions only used to calculate that store if (Instruction* D = dyn_cast(dependency->getOperand(0))) @@ -200,7 +197,6 @@ bool FDSE::handleEndBlock(BasicBlock& BB, SetVector& possiblyDead) if (deadPointers.count(S->getPointerOperand())){ // Remove it! MD.removeInstruction(S); - AA.deleteValue(S); // DCE instructions only used to calculate that store if (Instruction* D = dyn_cast(S->getOperand(0))) @@ -230,7 +226,6 @@ void FDSE::DeleteDeadInstructionChains(Instruction *I, // Let the memory dependence know getAnalysis().removeInstruction(I); - getAnalysis().deleteValue(I); // See if this made any operands dead. We do it this way in case the // instruction uses the same operand twice. We don't want to delete a