Do not try to override non-virtual methods, especially

when the new method gives the same result as the original
(as far as I can see).  This will hopefully pacify icc.

llvm-svn: 81131
This commit is contained in:
Duncan Sands 2009-09-06 20:02:00 +00:00
parent 6efbe6150b
commit 357614a0ca

View File

@ -90,19 +90,6 @@ namespace {
bool pointsToConstantMemory(const Value *P) {
return getAnalysis<AliasAnalysis>().pointsToConstantMemory(P);
}
bool doesNotAccessMemory(CallSite CS) {
return getAnalysis<AliasAnalysis>().doesNotAccessMemory(CS);
}
bool doesNotAccessMemory(Function *F) {
return getAnalysis<AliasAnalysis>().doesNotAccessMemory(F);
}
bool onlyReadsMemory(CallSite CS) {
return getAnalysis<AliasAnalysis>().onlyReadsMemory(CS);
}
bool onlyReadsMemory(Function *F) {
return getAnalysis<AliasAnalysis>().onlyReadsMemory(F);
}
// Forwarding functions: just delegate to a real AA implementation, counting
// the number of responses...