aboutsummaryrefslogtreecommitdiffstats
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
commit3b803758388cc969c52e12e968f22f00eecdc1fb (patch)
tree63df9adfd937867cb28155e1a75cb259d4868a2e /lib/Analysis/AliasDebugger.cpp
parent194cfb2c761c1c7c943527d5e843a070d580fa94 (diff)
downloadexternal_llvm-3b803758388cc969c52e12e968f22f00eecdc1fb.zip
external_llvm-3b803758388cc969c52e12e968f22f00eecdc1fb.tar.gz
external_llvm-3b803758388cc969c52e12e968f22f00eecdc1fb.tar.bz2
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 cf4727f..6868e3f 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);