From e345f6b5ab96717b5e253e166e674a4a2ae0ffea Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 23 May 2004 21:14:27 +0000 Subject: Updates to work with the new auto-forwarding AA interface changes llvm-svn: 13682 --- llvm/lib/Analysis/DataStructure/DataStructureAA.cpp | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'llvm/lib/Analysis') diff --git a/llvm/lib/Analysis/DataStructure/DataStructureAA.cpp b/llvm/lib/Analysis/DataStructure/DataStructureAA.cpp index 99b57266329..2c389729263 100644 --- a/llvm/lib/Analysis/DataStructure/DataStructureAA.cpp +++ b/llvm/lib/Analysis/DataStructure/DataStructureAA.cpp @@ -44,7 +44,6 @@ namespace { AU.setPreservesAll(); // Does not transform code AU.addRequiredTransitive(); // Uses TD Datastructures AU.addRequiredTransitive(); // Uses BU Datastructures - AU.addRequired(); // Chains to another AA impl } //------------------------------------------------ @@ -56,12 +55,7 @@ namespace { void getMustAliases(Value *P, std::vector &RetVals); - bool pointsToConstantMemory(const Value *P) { - return getAnalysis().pointsToConstantMemory(P); - } - - AliasAnalysis::ModRefResult - getModRefInfo(CallSite CS, Value *P, unsigned Size); + ModRefResult getModRefInfo(CallSite CS, Value *P, unsigned Size); private: DSGraph *getGraphForValue(const Value *V); @@ -155,7 +149,7 @@ AliasAnalysis::AliasResult DSAA::alias(const Value *V1, unsigned V1Size, // FIXME: we could improve on this by checking the globals graph for aliased // global queries... - return getAnalysis().alias(V1, V1Size, V2, V2Size); + return AliasAnalysis::alias(V1, V1Size, V2, V2Size); } /// getModRefInfo - does a callsite modify or reference a value? @@ -212,6 +206,6 @@ void DSAA::getMustAliases(Value *P, std::vector &RetVals) { } } #endif - return getAnalysis().getMustAliases(P, RetVals); + return AliasAnalysis::getMustAliases(P, RetVals); } -- cgit v1.2.3