summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/AliasDebugger.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-02-05 23:36:27 +0000
committerOwen Anderson <resistor@mac.com>2009-02-05 23:36:27 +0000
commit98a3617fba41ff4b4dd9cdfb7f662e9adb91eaae (patch)
tree88b3b282acf64faa107ef4b59eee999c1283207a /llvm/lib/Analysis/AliasDebugger.cpp
parenteff93e04018effd78ac738b1e2385a986accc8b0 (diff)
downloadbcm5719-llvm-98a3617fba41ff4b4dd9cdfb7f662e9adb91eaae.tar.gz
bcm5719-llvm-98a3617fba41ff4b4dd9cdfb7f662e9adb91eaae.zip
Refactor my previous change to maintain the distinction between AliasAnalysis and BasicAliasAnalysis. This involves some wider changes because it
folds away some never-used methods. llvm-svn: 63900
Diffstat (limited to 'llvm/lib/Analysis/AliasDebugger.cpp')
-rw-r--r--llvm/lib/Analysis/AliasDebugger.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/Analysis/AliasDebugger.cpp b/llvm/lib/Analysis/AliasDebugger.cpp
index 0bbd739351f..1e82621e020 100644
--- a/llvm/lib/Analysis/AliasDebugger.cpp
+++ b/llvm/lib/Analysis/AliasDebugger.cpp
@@ -102,15 +102,6 @@ namespace {
return AliasAnalysis::pointsToConstantMemory(P);
}
- /// getModRefBehavior - Return the behavior of the specified function if
- /// called from the specified call site. The call site may be null in which
- /// case the most generic behavior of this function should be returned.
- virtual ModRefBehavior getModRefBehavior(Function *F, CallSite CS,
- std::vector<PointerAccessInfo> *Info) {
- assert(Vals.find(F) != Vals.end() && "Never seen value in AA before");
- return AliasAnalysis::getModRefBehavior(F, CS, Info);
- }
-
virtual void deleteValue(Value *V) {
assert(Vals.find(V) != Vals.end() && "Never seen value in AA before");
AliasAnalysis::deleteValue(V);
OpenPOWER on IntegriCloud