aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/MachineFunction.h
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2009-08-26 19:16:32 +0000
committerGabor Greif <ggreif@gmail.com>2009-08-26 19:16:32 +0000
commit7309be6735666143bd9835b275dc8501617a2591 (patch)
treef070f232c7f8cf9c28e2cc4f4c0683df8b99bcd0 /include/llvm/CodeGen/MachineFunction.h
parentf3ea400830f5fffb1037c3fa785bc4677c26dee4 (diff)
downloadexternal_llvm-7309be6735666143bd9835b275dc8501617a2591.zip
external_llvm-7309be6735666143bd9835b275dc8501617a2591.tar.gz
external_llvm-7309be6735666143bd9835b275dc8501617a2591.tar.bz2
Remove all the LLVM_COMPACTIFY_SENTINELS-related macro magic as discussed with Chris on IRC. Anybody wanting to debug sentinel dereferencing problems must revert this patch and perform the indicated modifications.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFunction.h')
-rw-r--r--include/llvm/CodeGen/MachineFunction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h
index 92f46b0..10a5fb4 100644
--- a/include/llvm/CodeGen/MachineFunction.h
+++ b/include/llvm/CodeGen/MachineFunction.h
@@ -38,7 +38,7 @@ class TargetRegisterClass;
template <>
struct ilist_traits<MachineBasicBlock>
: public ilist_default_traits<MachineBasicBlock> {
- mutable ILIST_NODE<MachineBasicBlock> Sentinel;
+ mutable ilist_half_node<MachineBasicBlock> Sentinel;
public:
MachineBasicBlock *createSentinel() const {
return static_cast<MachineBasicBlock*>(&Sentinel);