From 9650983b9a30804d3479aeffb2a7f8bdb6b33942 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Wed, 21 Jul 2010 17:52:45 +0000 Subject: Move the smarts of AnalysisGroup registration into PassRegistry. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109019 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/PassRegistry.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'include/llvm/PassRegistry.h') diff --git a/include/llvm/PassRegistry.h b/include/llvm/PassRegistry.h index 7b1b6fc..193ecfd 100644 --- a/include/llvm/PassRegistry.h +++ b/include/llvm/PassRegistry.h @@ -58,9 +58,8 @@ public: void unregisterPass(const PassInfo &PI); /// Analysis Group Mechanisms. - void registerAnalysisGroup(PassInfo *InterfaceInfo, - const PassInfo *ImplementationInfo, - bool isDefault); + void registerAnalysisGroup(intptr_t InterfaceID, intptr_t PassID, + PassInfo& Registeree, bool isDefault); void enumerateWith(PassRegistrationListener *L); void addRegistrationListener(PassRegistrationListener* L); -- cgit v1.1