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/CodeGen | |
parent | a6b37c09d3ce90b03c9d6ccbaf83068b9ad6f0ab (diff) | |
download | external_llvm-9c01f2dd0b20e09f4edef832620a188eda62ff5a.tar.gz external_llvm-9c01f2dd0b20e09f4edef832620a188eda62ff5a.tar.bz2 external_llvm-9c01f2dd0b20e09f4edef832620a188eda62ff5a.zip |
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/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/MachineBasicBlock.h | 2 | ||||
-rw-r--r-- | include/llvm/CodeGen/MachineFunction.h | 2 | ||||
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index c7a29c22b7..56b96ea872 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -26,7 +26,7 @@ class MachineFunction; template <> struct ilist_traits<MachineInstr> : public ilist_default_traits<MachineInstr> { private: - mutable ILIST_NODE<MachineInstr> Sentinel; + mutable ilist_node<MachineInstr> Sentinel; // this is only set by the MachineBasicBlock owning the LiveList friend class MachineBasicBlock; diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h index e8a847d633..dc7fa8cb16 100644 --- a/include/llvm/CodeGen/MachineFunction.h +++ b/include/llvm/CodeGen/MachineFunction.h @@ -37,7 +37,7 @@ class TargetMachine; template <> struct ilist_traits<MachineBasicBlock> : public ilist_default_traits<MachineBasicBlock> { - mutable ILIST_NODE<MachineBasicBlock> Sentinel; + mutable ilist_node<MachineBasicBlock> Sentinel; public: MachineBasicBlock *createSentinel() const { return static_cast<MachineBasicBlock*>(&Sentinel); diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index 6f67a559ae..c440caf27a 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); |