From: Chris Lattner Date: Fri, 30 Nov 2007 18:52:58 +0000 (+0000) Subject: chain update requests properly. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cd883f203d23c7e44b12dff62df2e6d65d8f231c;p=oota-llvm.git chain update requests properly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44460 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/IPA/GlobalsModRef.cpp b/lib/Analysis/IPA/GlobalsModRef.cpp index 63ddb8986f7..dce4a1ee8a0 100644 --- a/lib/Analysis/IPA/GlobalsModRef.cpp +++ b/lib/Analysis/IPA/GlobalsModRef.cpp @@ -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); }