diff options
author | Chris Lattner <sabre@nondot.org> | 2007-11-30 18:52:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-11-30 18:52:58 +0000 |
commit | cd883f203d23c7e44b12dff62df2e6d65d8f231c (patch) | |
tree | 937e9f4c12890181065f785ecd3b51ae74e5c456 | |
parent | 6bb0ae47111f5b5f351e702e696fca7551cc3d30 (diff) |
chain update requests properly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44460 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Analysis/IPA/GlobalsModRef.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Analysis/IPA/GlobalsModRef.cpp b/lib/Analysis/IPA/GlobalsModRef.cpp index 63ddb8986f..dce4a1ee8a 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); } |