aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/PassSupport.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-29 23:34:14 +0000
committerDan Gohman <gohman@apple.com>2009-08-29 23:34:14 +0000
commitc34ee42595de3ff38163a8f9350be567fbd8af25 (patch)
treeefd0f20148da5fdbe861e2afb9c6ce28db57aa28 /include/llvm/PassSupport.h
parent71a258c36bcf24be212afaca798f47346d9df77e (diff)
downloadexternal_llvm-c34ee42595de3ff38163a8f9350be567fbd8af25.zip
external_llvm-c34ee42595de3ff38163a8f9350be567fbd8af25.tar.gz
external_llvm-c34ee42595de3ff38163a8f9350be567fbd8af25.tar.bz2
Remove some unused fields.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80450 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/PassSupport.h')
-rw-r--r--include/llvm/PassSupport.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/include/llvm/PassSupport.h b/include/llvm/PassSupport.h
index fe3ca52..b5e581a 100644
--- a/include/llvm/PassSupport.h
+++ b/include/llvm/PassSupport.h
@@ -190,14 +190,11 @@ struct RegisterPass : public PassInfo {
/// a nice name with the interface.
///
class RegisterAGBase : public PassInfo {
- PassInfo *InterfaceInfo;
- const PassInfo *ImplementationInfo;
- bool isDefaultImplementation;
protected:
- explicit RegisterAGBase(const char *Name,
- intptr_t InterfaceID,
- intptr_t PassID = 0,
- bool isDefault = false);
+ RegisterAGBase(const char *Name,
+ intptr_t InterfaceID,
+ intptr_t PassID = 0,
+ bool isDefault = false);
};
template<typename Interface, bool Default = false>