diff options
author | Duncan Sands <baldrick@free.fr> | 2009-03-27 15:29:38 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-03-27 15:29:38 +0000 |
commit | 76d38384542e2f596e14eb8e80b8e1c6a2652fd1 (patch) | |
tree | adee72df5b9a882fcd60b0e0f8f99f0840b08c0e /include/llvm/Function.h | |
parent | a82dfca8c6c91ed34b7360afdba771145023b8fd (diff) |
Reapply r66415, which was reverted in r66426 for
causing a bootstrap failure. Bootstraps here on
x86-32-linux and x86-64-linux. Requested by the
author Gabor Greif who says that a bug that might
have been causing the failure has since been fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67844 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 ccc006cfcf..47273439c1 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, |