From 7afd3e1599222dc691cca9e601800878c8546663 Mon Sep 17 00:00:00 2001 From: Gabor Greif Date: Sat, 7 Mar 2009 10:49:57 +0000 Subject: further simplifications arising from peruse of the more declarative interface git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66333 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Module.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'include/llvm/Module.h') diff --git a/include/llvm/Module.h b/include/llvm/Module.h index d706615..2564ddc 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -31,7 +31,6 @@ template<> struct ilist_traits // createSentinel is used to create a node that marks the end of the list. static Function *createSentinel(); static void destroySentinel(Function *F) { delete F; } - static iplist &getList(Module *M); static inline ValueSymbolTable *getSymTab(Module *M); }; template<> struct ilist_traits @@ -39,7 +38,6 @@ template<> struct ilist_traits // createSentinel is used to create a node that marks the end of the list. static GlobalVariable *createSentinel(); static void destroySentinel(GlobalVariable *GV) { delete GV; } - static iplist &getList(Module *M); static inline ValueSymbolTable *getSymTab(Module *M); }; template<> struct ilist_traits @@ -47,7 +45,6 @@ template<> struct ilist_traits // createSentinel is used to create a node that marks the end of the list. static GlobalAlias *createSentinel(); static void destroySentinel(GlobalAlias *GA) { delete GA; } - static iplist &getList(Module *M); static inline ValueSymbolTable *getSymTab(Module *M); }; -- cgit v1.1