aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Function.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
commita4c2ff8891da027fe67394cf00a2d594cee3fbf4 (patch)
treed30ba489eb92d2c50941b170fe2348ab00051ecf /lib/VMCore/Function.cpp
parent260c0ade6aa30bce4f0fe2d92e6fe6e3effe539c (diff)
downloadexternal_llvm-a4c2ff8891da027fe67394cf00a2d594cee3fbf4.zip
external_llvm-a4c2ff8891da027fe67394cf00a2d594cee3fbf4.tar.gz
external_llvm-a4c2ff8891da027fe67394cf00a2d594cee3fbf4.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 'lib/VMCore/Function.cpp')
-rw-r--r--lib/VMCore/Function.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp
index 258158f..3a991f6 100644
--- a/lib/VMCore/Function.cpp
+++ b/lib/VMCore/Function.cpp
@@ -22,13 +22,6 @@
#include "llvm/ADT/StringExtras.h"
using namespace llvm;
-iplist<BasicBlock> &ilist_traits<BasicBlock>::getList(Function *F) {
- return F->getBasicBlockList();
-}
-
-iplist<Argument> &ilist_traits<Argument>::getList(Function *F) {
- return F->getArgumentList();
-}
// Explicit instantiations of SymbolTableListTraits since some of the methods
// are not in the public header file...