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
This commit is contained in:
Chris Lattner
2004-05-23 21:13:51 +00:00
parent 0f312d6998
commit 1bf3408f96

View File

@@ -47,7 +47,6 @@ namespace {
AliasAnalysis::getAnalysisUsage(AU); AliasAnalysis::getAnalysisUsage(AU);
AU.setPreservesAll(); // Does not transform code... AU.setPreservesAll(); // Does not transform code...
AU.addRequired<LocalDataStructures>(); // Uses local dsgraph AU.addRequired<LocalDataStructures>(); // Uses local dsgraph
AU.addRequired<AliasAnalysis>(); // Chains to another AA impl...
} }
// print - Implement the Pass::print method... // print - Implement the Pass::print method...
@@ -64,10 +63,6 @@ namespace {
AliasResult alias(const Value *V1, unsigned V1Size, AliasResult alias(const Value *V1, unsigned V1Size,
const Value *V2, unsigned V2Size); const Value *V2, unsigned V2Size);
bool pointsToConstantMemory(const Value *P) {
return getAnalysis<AliasAnalysis>().pointsToConstantMemory(P);
}
private: private:
void ResolveFunctionCall(Function *F, const DSCallSite &Call, void ResolveFunctionCall(Function *F, const DSCallSite &Call,
DSNodeHandle &RetVal); DSNodeHandle &RetVal);
@@ -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 // If we cannot determine alias properties based on our graph, fall back on
// some other AA implementation. // some other AA implementation.
// //
return getAnalysis<AliasAnalysis>().alias(V1, V1Size, V2, V2Size); return AliasAnalysis::alias(V1, V1Size, V2, V2Size);
} }