aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/PassAnalysisSupport.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-04-25 01:01:35 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-04-25 01:01:35 +0000
commite8f38486394f3a897e3637b559ade420dddbe1e3 (patch)
treec39c0b39cca722d01af307fc52aba825b662831f /include/llvm/PassAnalysisSupport.h
parentfd84c2d89c5334f13f4710a3cb8b82b18bb2135e (diff)
downloadexternal_llvm-e8f38486394f3a897e3637b559ade420dddbe1e3.zip
external_llvm-e8f38486394f3a897e3637b559ade420dddbe1e3.tar.gz
external_llvm-e8f38486394f3a897e3637b559ade420dddbe1e3.tar.bz2
Older compilers won't like the inline virtual destructor in the header file
so we put the destructor in Pass.cpp and make it non-inline. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21520 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/PassAnalysisSupport.h')
-rw-r--r--include/llvm/PassAnalysisSupport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/PassAnalysisSupport.h b/include/llvm/PassAnalysisSupport.h
index 9f70d7e..415f93c 100644
--- a/include/llvm/PassAnalysisSupport.h
+++ b/include/llvm/PassAnalysisSupport.h
@@ -105,7 +105,7 @@ public:
// is used to pull analysis information out of them.
//
struct AnalysisResolver {
- virtual ~AnalysisResolver() {}
+ virtual ~AnalysisResolver();
virtual Pass *getAnalysisOrNullUp(AnalysisID ID) const = 0;
virtual Pass *getAnalysisOrNullDown(AnalysisID ID) const = 0;
virtual void addPass(ImmutablePass *IP, AnalysisUsage &AU) = 0;