From 98a3617fba41ff4b4dd9cdfb7f662e9adb91eaae Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Thu, 5 Feb 2009 23:36:27 +0000 Subject: 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 --- llvm/lib/Analysis/AliasDebugger.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'llvm/lib/Analysis/AliasDebugger.cpp') diff --git a/llvm/lib/Analysis/AliasDebugger.cpp b/llvm/lib/Analysis/AliasDebugger.cpp index 0bbd7393..1e82621 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 *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); -- cgit v1.1