diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-07-22 09:49:59 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-07-22 09:49:59 +0000 |
commit | a1032a0f7cd5d6eac98d692633b82a86e704792c (patch) | |
tree | 4c0a412ad32620e844f7ceac4f5b4f9eb77a397f /llvm/lib/Analysis/AliasAnalysis.cpp | |
parent | d86a4f5ec81df833f8013ecc6c596ea0935b3246 (diff) | |
download | bcm5719-llvm-a1032a0f7cd5d6eac98d692633b82a86e704792c.tar.gz bcm5719-llvm-a1032a0f7cd5d6eac98d692633b82a86e704792c.zip |
[PM/AA] Remove the last of the legacy update API from AliasAnalysis as
part of simplifying its interface and usage in preparation for porting
to work with the new pass manager.
Note that this will likely expose that we have dead arguments, members,
and maybe even pass requirements for AA. I'll be cleaning those up in
seperate patches. This just zaps the actual update API.
Differential Revision: http://reviews.llvm.org/D11325
llvm-svn: 242881
Diffstat (limited to 'llvm/lib/Analysis/AliasAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/AliasAnalysis.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Analysis/AliasAnalysis.cpp b/llvm/lib/Analysis/AliasAnalysis.cpp index 05f14698ecb..f10468d2ebb 100644 --- a/llvm/lib/Analysis/AliasAnalysis.cpp +++ b/llvm/lib/Analysis/AliasAnalysis.cpp @@ -66,11 +66,6 @@ AliasAnalysis::getArgModRefInfo(ImmutableCallSite CS, unsigned ArgIdx) { return AA->getArgModRefInfo(CS, ArgIdx); } -void AliasAnalysis::deleteValue(Value *V) { - assert(AA && "AA didn't call InitializeAliasAnalysis in its run method!"); - AA->deleteValue(V); -} - AliasAnalysis::ModRefResult AliasAnalysis::getModRefInfo(Instruction *I, ImmutableCallSite Call) { // We may have two calls |