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/NoAliasAnalysis.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/NoAliasAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/NoAliasAnalysis.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/NoAliasAnalysis.cpp b/llvm/lib/Analysis/NoAliasAnalysis.cpp index 43e624fcfa4..1d21ed75954 100644 --- a/llvm/lib/Analysis/NoAliasAnalysis.cpp +++ b/llvm/lib/Analysis/NoAliasAnalysis.cpp @@ -71,8 +71,6 @@ namespace { return ModRef; } - void deleteValue(Value *V) override {} - /// getAdjustedAnalysisPointer - This method is used when a pass implements /// an analysis interface through multiple inheritance. If needed, it /// should override this to adjust the this pointer as needed for the |