summaryrefslogtreecommitdiffstats
path: root/include/llvm/Module.h
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2009-03-07 10:49:57 +0000
committerGabor Greif <ggreif@gmail.com>2009-03-07 10:49:57 +0000
commit7afd3e1599222dc691cca9e601800878c8546663 (patch)
treed30ba489eb92d2c50941b170fe2348ab00051ecf /include/llvm/Module.h
parentb547a181005cc255fa57c61c1c0dbafca5375fb4 (diff)
downloadexternal_llvm-7afd3e1599222dc691cca9e601800878c8546663.zip
external_llvm-7afd3e1599222dc691cca9e601800878c8546663.tar.gz
external_llvm-7afd3e1599222dc691cca9e601800878c8546663.tar.bz2
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
Diffstat (limited to 'include/llvm/Module.h')
-rw-r--r--include/llvm/Module.h3
1 files changed, 0 insertions, 3 deletions
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<Function>
// 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<Function> &getList(Module *M);
static inline ValueSymbolTable *getSymTab(Module *M);
};
template<> struct ilist_traits<GlobalVariable>
@@ -39,7 +38,6 @@ template<> struct ilist_traits<GlobalVariable>
// 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<GlobalVariable> &getList(Module *M);
static inline ValueSymbolTable *getSymTab(Module *M);
};
template<> struct ilist_traits<GlobalAlias>
@@ -47,7 +45,6 @@ template<> struct ilist_traits<GlobalAlias>
// 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<GlobalAlias> &getList(Module *M);
static inline ValueSymbolTable *getSymTab(Module *M);
};