Inform ScalarEvolutions that we're deleting Values.

This is the obviously correct part of the fix for PR1487.

llvm-svn: 37457
This commit is contained in:
Nick Lewycky 2007-06-06 03:51:56 +00:00
parent e4ec918be0
commit 91ed6efc24
1 changed files with 2 additions and 0 deletions

View File

@ -181,6 +181,7 @@ void IndVarSimplify::EliminatePointerRecurrence(PHINode *PN,
GetElementPtrInst *NGEPI = new GetElementPtrInst(
NCE, Constant::getNullValue(Type::Int32Ty), NewAdd,
GEPI->getName(), GEPI);
SE->deleteInstructionFromRecords(GEPI);
GEPI->replaceAllUsesWith(NGEPI);
GEPI->eraseFromParent();
GEPI = NGEPI;
@ -398,6 +399,7 @@ void IndVarSimplify::RewriteLoopExitValues(Loop *L) {
// the PHI entirely. This is safe, because the NewVal won't be variant
// in the loop, so we don't need an LCSSA phi node anymore.
if (NumPreds == 1) {
SE->deleteInstructionFromRecords(PN);
PN->replaceAllUsesWith(ExitVal);
PN->eraseFromParent();
break;