commit | 323ea0994d931be2cc3610fc1be0ae424b384527 | [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 | 3fc741e7c4f7cf44eaecef29eb872cb3bea07be8 [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); }