diff options
author | Dan Gohman <gohman@apple.com> | 2009-03-27 18:37:13 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-03-27 18:37:13 +0000 |
commit | 9c01f2dd0b20e09f4edef832620a188eda62ff5a (patch) | |
tree | c77dd696f7629cb1b194f92d691a871133e56b36 /include/llvm/Function.h | |
parent | a6b37c09d3ce90b03c9d6ccbaf83068b9ad6f0ab (diff) |
Revert r67844. This fixes the llvm-gcc-4.2 build on Darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67856 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Function.h')
-rw-r--r-- | include/llvm/Function.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 47273439c1..ccc006cfcf 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -45,7 +45,7 @@ template<> struct ilist_traits<BasicBlock> static ValueSymbolTable *getSymTab(Function *ItemParent); private: - mutable ILIST_NODE<BasicBlock> Sentinel; + mutable ilist_node<BasicBlock> Sentinel; }; template<> struct ilist_traits<Argument> @@ -62,7 +62,7 @@ template<> struct ilist_traits<Argument> static ValueSymbolTable *getSymTab(Function *ItemParent); private: - mutable ILIST_NODE<Argument> Sentinel; + mutable ilist_node<Argument> Sentinel; }; class Function : public GlobalValue, public Annotable, |