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 | 907703cecddca73eaaa1c4d3c4fdf9ef8c9bd987 (patch) | |
| tree | 4acb81bb0b28c14ec4f861a2997699a0a304013e /llvm/lib/Analysis | |
| parent | 452815a6b273afa48efc240a5c393773917e597a (diff) | |
| download | bcm5719-llvm-907703cecddca73eaaa1c4d3c4fdf9ef8c9bd987.tar.gz bcm5719-llvm-907703cecddca73eaaa1c4d3c4fdf9ef8c9bd987.zip | |
chain update requests properly.
llvm-svn: 44460
Diffstat (limited to 'llvm/lib/Analysis')
| -rw-r--r-- | llvm/lib/Analysis/IPA/GlobalsModRef.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/IPA/GlobalsModRef.cpp b/llvm/lib/Analysis/IPA/GlobalsModRef.cpp index 63ddb8986f7..dce4a1ee8a0 100644 --- a/llvm/lib/Analysis/IPA/GlobalsModRef.cpp +++ b/llvm/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); } |

