summaryrefslogtreecommitdiff
path: root/lib/Analysis/AliasDebugger.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-11-22 16:01:44 +0000
committerChris Lattner <sabre@nondot.org>2009-11-22 16:01:44 +0000
commit66e08cf79a052dd75bf6fa2f94abd4c0a18cb019 (patch)
tree63df9adfd937867cb28155e1a75cb259d4868a2e /lib/Analysis/AliasDebugger.cpp
parent18d18b71d5955274b95ac96cbb8353b4766d1995 (diff)
downloadllvm-66e08cf79a052dd75bf6fa2f94abd4c0a18cb019.tar.gz
llvm-66e08cf79a052dd75bf6fa2f94abd4c0a18cb019.tar.bz2
llvm-66e08cf79a052dd75bf6fa2f94abd4c0a18cb019.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89599 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/AliasDebugger.cpp')
-rw-r--r--lib/Analysis/AliasDebugger.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Analysis/AliasDebugger.cpp b/lib/Analysis/AliasDebugger.cpp
index cf4727f1eb..6868e3f2ce 100644
--- a/lib/Analysis/AliasDebugger.cpp
+++ b/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);