mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81131 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
da9ad384af
commit
f7f4ba6c1f
@ -90,19 +90,6 @@ namespace {
|
|||||||
bool pointsToConstantMemory(const Value *P) {
|
bool pointsToConstantMemory(const Value *P) {
|
||||||
return getAnalysis<AliasAnalysis>().pointsToConstantMemory(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
|
// Forwarding functions: just delegate to a real AA implementation, counting
|
||||||
// the number of responses...
|
// the number of responses...
|
||||||
|
Loading…
Reference in New Issue
Block a user