diff options
author | Chris Lattner <sabre@nondot.org> | 2009-11-22 16:01:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-11-22 16:01:44 +0000 |
commit | 88874ec60a0a761a5462c660821749c7910c3526 (patch) | |
tree | 2183c32b6e8b8f45339e609b933272a58a834690 /llvm/lib/Analysis/AliasDebugger.cpp | |
parent | f540ae5ab32303919ca2b259c8ff8fb301225c42 (diff) | |
download | bcm5719-llvm-88874ec60a0a761a5462c660821749c7910c3526.tar.gz bcm5719-llvm-88874ec60a0a761a5462c660821749c7910c3526.zip |
Remove the AliasAnalysis::getMustAliases method, which is dead.
The hasNoModRefInfoForCalls isn't worth it as a filter because
basicaa provides m/r info and everything chains to it, so remove
it.
llvm-svn: 89599
Diffstat (limited to 'llvm/lib/Analysis/AliasDebugger.cpp')
-rw-r--r-- | llvm/lib/Analysis/AliasDebugger.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Analysis/AliasDebugger.cpp b/llvm/lib/Analysis/AliasDebugger.cpp index cf4727f1ebe..6868e3f2cef 100644 --- a/llvm/lib/Analysis/AliasDebugger.cpp +++ b/llvm/lib/Analysis/AliasDebugger.cpp @@ -90,11 +90,6 @@ namespace { return AliasAnalysis::getModRefInfo(CS1,CS2); } - void getMustAliases(Value *P, std::vector<Value*> &RetVals) { - assert(Vals.find(P) != Vals.end() && "Never seen value in AA before"); - return AliasAnalysis::getMustAliases(P, RetVals); - } - bool pointsToConstantMemory(const Value *P) { assert(Vals.find(P) != Vals.end() && "Never seen value in AA before"); return AliasAnalysis::pointsToConstantMemory(P); |