summaryrefslogtreecommitdiff
path: root/include/llvm/BasicBlock.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-03-27 18:37:13 +0000
committerDan Gohman <gohman@apple.com>2009-03-27 18:37:13 +0000
commit9c01f2dd0b20e09f4edef832620a188eda62ff5a (patch)
treec77dd696f7629cb1b194f92d691a871133e56b36 /include/llvm/BasicBlock.h
parenta6b37c09d3ce90b03c9d6ccbaf83068b9ad6f0ab (diff)
downloadllvm-9c01f2dd0b20e09f4edef832620a188eda62ff5a.tar.gz
llvm-9c01f2dd0b20e09f4edef832620a188eda62ff5a.tar.bz2
llvm-9c01f2dd0b20e09f4edef832620a188eda62ff5a.tar.xz
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/BasicBlock.h')
-rw-r--r--include/llvm/BasicBlock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h
index d0bd25a0db..072f6152ea 100644
--- a/include/llvm/BasicBlock.h
+++ b/include/llvm/BasicBlock.h
@@ -46,7 +46,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