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 /include/llvm/Function.h | |
parent | b547a181005cc255fa57c61c1c0dbafca5375fb4 (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 'include/llvm/Function.h')
-rw-r--r-- | include/llvm/Function.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h index ff0b066a5e..ccc006cfcf 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -43,7 +43,6 @@ template<> struct ilist_traits<BasicBlock> BasicBlock *ensureHead(BasicBlock*) const { return createSentinel(); } static void noteHead(BasicBlock*, BasicBlock*) {} - static iplist<BasicBlock> &getList(Function *F); static ValueSymbolTable *getSymTab(Function *ItemParent); private: mutable ilist_node<BasicBlock> Sentinel; @@ -61,7 +60,6 @@ template<> struct ilist_traits<Argument> Argument *ensureHead(Argument*) const { return createSentinel(); } static void noteHead(Argument*, Argument*) {} - static iplist<Argument> &getList(Function *F); static ValueSymbolTable *getSymTab(Function *ItemParent); private: mutable ilist_node<Argument> Sentinel; |