diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-08-25 00:05:04 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-08-25 00:05:04 +0000 |
commit | f63097f223459a2f1125ab68afd61b364eda9312 (patch) | |
tree | d33e85f56f1150ba4149342c4dde86e3dd6a002f /include/llvm/BasicBlock.h | |
parent | 2e193f80ebd0230d541013206dd13b0cb2a2d094 (diff) |
--- Reverse-merging r79938 into '.':
U include/llvm/BasicBlock.h
U include/llvm/ADT/ilist_node.h
U include/llvm/ADT/ilist.h
U include/llvm/CodeGen/SelectionDAG.h
U include/llvm/CodeGen/MachineFunction.h
U include/llvm/CodeGen/MachineBasicBlock.h
U include/llvm/Function.h
Revert r79938. It was causing self-hosting build failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79960 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/BasicBlock.h')
-rw-r--r-- | include/llvm/BasicBlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index 16f680d243..3ba4e360f7 100644 --- a/include/llvm/BasicBlock.h +++ b/include/llvm/BasicBlock.h @@ -47,7 +47,7 @@ template<> struct ilist_traits<Instruction> Instruction *ensureHead(Instruction*) const { return createSentinel(); } static void noteHead(Instruction*, Instruction*) {} private: - mutable ILIST_NODE<Instruction> Sentinel; + mutable ilist_node<Instruction> Sentinel; }; /// This represents a single basic block in LLVM. A basic block is simply a |