aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2008-12-23 00:49:51 +0000
committerOwen Anderson <resistor@mac.com>2008-12-23 00:49:51 +0000
commitae53c932b9f3b6046781aeceadc7559bc477f5d4 (patch)
tree81fc609fbfc80aef65f378f479186d3e3602467b
parent15a3a49e199c3d7d9f15da0eded5a1edf94dc354 (diff)
Don't forget to remove phi nodes from the value numbering table after we collapse them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61358 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Scalar/GVN.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp
index cd2dcf53d4..e5eef8f99e 100644
--- a/lib/Transforms/Scalar/GVN.cpp
+++ b/lib/Transforms/Scalar/GVN.cpp
@@ -1313,6 +1313,8 @@ bool GVN::processInstruction(Instruction *I,
p->replaceAllUsesWith(constVal);
if (isa<PointerType>(constVal->getType()))
MD->invalidateCachedPointerInfo(constVal);
+ VN.erase(p);
+
toErase.push_back(p);
} else {
localAvail[I->getParent()]->table.insert(std::make_pair(num, I));