diff options
author | Gabor Greif <ggreif@gmail.com> | 2009-03-07 10:49:57 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2009-03-07 10:49:57 +0000 |
commit | 7afd3e1599222dc691cca9e601800878c8546663 (patch) | |
tree | d30ba489eb92d2c50941b170fe2348ab00051ecf /lib/VMCore/BasicBlock.cpp | |
parent | b547a181005cc255fa57c61c1c0dbafca5375fb4 (diff) | |
download | external_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 'lib/VMCore/BasicBlock.cpp')
-rw-r--r-- | lib/VMCore/BasicBlock.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/VMCore/BasicBlock.cpp b/lib/VMCore/BasicBlock.cpp index 66ee99d..f682231 100644 --- a/lib/VMCore/BasicBlock.cpp +++ b/lib/VMCore/BasicBlock.cpp @@ -31,10 +31,6 @@ ilist_traits<Instruction>::getSymTab(BasicBlock *BB) { return 0; } -iplist<Instruction> &ilist_traits<Instruction>::getList(BasicBlock *BB) { - return BB->getInstList(); -} - // Explicit instantiation of SymbolTableListTraits since some of the methods // are not in the public header file... template class SymbolTableListTraits<Instruction, BasicBlock>; |