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/AliasSetTracker.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/AliasSetTracker.cpp')
| -rw-r--r-- | llvm/lib/Analysis/AliasSetTracker.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/AliasSetTracker.cpp b/llvm/lib/Analysis/AliasSetTracker.cpp index 54d0f4304e1..3369cc5bf42 100644 --- a/llvm/lib/Analysis/AliasSetTracker.cpp +++ b/llvm/lib/Analysis/AliasSetTracker.cpp @@ -505,9 +505,6 @@ bool AliasSetTracker::remove(Instruction *I) { // dangling pointers to deleted instructions. // void AliasSetTracker::deleteValue(Value *PtrVal) { - // Notify the alias analysis implementation that this value is gone. - AA.deleteValue(PtrVal); - // If this is a call instruction, remove the callsite from the appropriate // AliasSet (if present). if (Instruction *Inst = dyn_cast<Instruction>(PtrVal)) { |

