commit | cd883f203d23c7e44b12dff62df2e6d65d8f231c | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Fri Nov 30 18:52:58 2007 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Fri Nov 30 18:52:58 2007 +0000 |
tree | 937e9f4c12890181065f785ecd3b51ae74e5c456 | |
parent | 6bb0ae47111f5b5f351e702e696fca7551cc3d30 [diff] [blame] |
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 63ddb89..dce4a1e 100644 --- a/lib/Analysis/IPA/GlobalsModRef.cpp +++ b/lib/Analysis/IPA/GlobalsModRef.cpp
@@ -548,7 +548,10 @@ // 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); }