aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore/Module.cpp
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 /lib/VMCore/Module.cpp
parentb547a181005cc255fa57c61c1c0dbafca5375fb4 (diff)
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 'lib/VMCore/Module.cpp')
-rw-r--r--lib/VMCore/Module.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/VMCore/Module.cpp b/lib/VMCore/Module.cpp
index 47233aea68..25d297a03e 100644
--- a/lib/VMCore/Module.cpp
+++ b/lib/VMCore/Module.cpp
@@ -52,16 +52,6 @@ GlobalAlias *ilist_traits<GlobalAlias>::createSentinel() {
return Ret;
}
-iplist<Function> &ilist_traits<Function>::getList(Module *M) {
- return M->getFunctionList();
-}
-iplist<GlobalVariable> &ilist_traits<GlobalVariable>::getList(Module *M) {
- return M->getGlobalList();
-}
-iplist<GlobalAlias> &ilist_traits<GlobalAlias>::getList(Module *M) {
- return M->getAliasList();
-}
-
// Explicit instantiations of SymbolTableListTraits since some of the methods
// are not in the public header file.
template class SymbolTableListTraits<GlobalVariable, Module>;