chain update requests properly.

llvm-svn: 44460
This commit is contained in:
Chris Lattner 2007-11-30 18:52:58 +00:00
parent 452815a6b2
commit 907703cecd
1 changed files with 3 additions and 0 deletions

View File

@ -548,7 +548,10 @@ void GlobalsModRef::deleteValue(Value *V) {
// Otherwise, if this is an allocation related to an indirect global, remove
// it.
AllocsForIndirectGlobals.erase(V);
AliasAnalysis::deleteValue(V);
}
void GlobalsModRef::copyValue(Value *From, Value *To) {
AliasAnalysis::copyValue(From, To);
}