summaryrefslogtreecommitdiff
path: root/lib/Analysis/AliasAnalysisCounter.cpp
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2009-09-06 20:02:00 +0000
committerDuncan Sands <baldrick@free.fr>2009-09-06 20:02:00 +0000
commitf7f4ba6c1fd5e42430891bc1e1f841ec8f701534 (patch)
treed11fba81e5ce199edc226d4d36d6a739bf19cd7a /lib/Analysis/AliasAnalysisCounter.cpp
parentda9ad384aff792cec928882838653b2e4fe4df12 (diff)
downloadllvm-f7f4ba6c1fd5e42430891bc1e1f841ec8f701534.tar.gz
llvm-f7f4ba6c1fd5e42430891bc1e1f841ec8f701534.tar.bz2
llvm-f7f4ba6c1fd5e42430891bc1e1f841ec8f701534.tar.xz
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
Diffstat (limited to 'lib/Analysis/AliasAnalysisCounter.cpp')
-rw-r--r--lib/Analysis/AliasAnalysisCounter.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/Analysis/AliasAnalysisCounter.cpp b/lib/Analysis/AliasAnalysisCounter.cpp
index 06827ae453..272c871ce2 100644
--- a/lib/Analysis/AliasAnalysisCounter.cpp
+++ b/lib/Analysis/AliasAnalysisCounter.cpp
@@ -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...