aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/IPA
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-11-30 18:52:58 +0000
committerChris Lattner <sabre@nondot.org>2007-11-30 18:52:58 +0000
commit323ea0994d931be2cc3610fc1be0ae424b384527 (patch)
tree937e9f4c12890181065f785ecd3b51ae74e5c456 /lib/Analysis/IPA
parent3fc741e7c4f7cf44eaecef29eb872cb3bea07be8 (diff)
downloadexternal_llvm-323ea0994d931be2cc3610fc1be0ae424b384527.zip
external_llvm-323ea0994d931be2cc3610fc1be0ae424b384527.tar.gz
external_llvm-323ea0994d931be2cc3610fc1be0ae424b384527.tar.bz2
chain update requests properly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44460 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IPA')
-rw-r--r--lib/Analysis/IPA/GlobalsModRef.cpp3
1 files changed, 3 insertions, 0 deletions
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 @@ 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);
}