summaryrefslogtreecommitdiff
path: root/include/llvm/BasicBlock.h
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2009-03-27 15:29:38 +0000
committerDuncan Sands <baldrick@free.fr>2009-03-27 15:29:38 +0000
commit76d38384542e2f596e14eb8e80b8e1c6a2652fd1 (patch)
treeadee72df5b9a882fcd60b0e0f8f99f0840b08c0e /include/llvm/BasicBlock.h
parenta82dfca8c6c91ed34b7360afdba771145023b8fd (diff)
downloadllvm-76d38384542e2f596e14eb8e80b8e1c6a2652fd1.tar.gz
llvm-76d38384542e2f596e14eb8e80b8e1c6a2652fd1.tar.bz2
llvm-76d38384542e2f596e14eb8e80b8e1c6a2652fd1.tar.xz
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/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 072f6152ea..d0bd25a0db 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