From 1bf3408f96a9e7901247f1731ab79f4dae1ce778 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 23 May 2004 21:13:51 +0000 Subject: [PATCH] Update to match the autochaining interface that the AA interface uses git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13680 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/DataStructure/Steensgaard.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/Analysis/DataStructure/Steensgaard.cpp b/lib/Analysis/DataStructure/Steensgaard.cpp index cc50571019b..12972eebe5c 100644 --- a/lib/Analysis/DataStructure/Steensgaard.cpp +++ b/lib/Analysis/DataStructure/Steensgaard.cpp @@ -47,7 +47,6 @@ namespace { AliasAnalysis::getAnalysisUsage(AU); AU.setPreservesAll(); // Does not transform code... AU.addRequired(); // Uses local dsgraph - AU.addRequired(); // Chains to another AA impl... } // print - Implement the Pass::print method... @@ -63,10 +62,6 @@ namespace { // alias - This is the only method here that does anything interesting... AliasResult alias(const Value *V1, unsigned V1Size, const Value *V2, unsigned V2Size); - - bool pointsToConstantMemory(const Value *P) { - return getAnalysis().pointsToConstantMemory(P); - } private: void ResolveFunctionCall(Function *F, const DSCallSite &Call, @@ -238,5 +233,5 @@ AliasAnalysis::AliasResult Steens::alias(const Value *V1, unsigned V1Size, // If we cannot determine alias properties based on our graph, fall back on // some other AA implementation. // - return getAnalysis().alias(V1, V1Size, V2, V2Size); + return AliasAnalysis::alias(V1, V1Size, V2, V2Size); } -- 2.34.1