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/CodeGen/SelectionDAG.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/CodeGen/SelectionDAG.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index c440caf27a..6f67a559ae 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -39,7 +39,7 @@ class FunctionLoweringInfo; template<> struct ilist_traits<SDNode> : public ilist_default_traits<SDNode> { private: - mutable ilist_node<SDNode> Sentinel; + mutable ILIST_NODE<SDNode> Sentinel; public: SDNode *createSentinel() const { return static_cast<SDNode*>(&Sentinel); |