diff options
author | Gabor Greif <ggreif@gmail.com> | 2009-08-26 19:16:32 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2009-08-26 19:16:32 +0000 |
commit | 7309be6735666143bd9835b275dc8501617a2591 (patch) | |
tree | f070f232c7f8cf9c28e2cc4f4c0683df8b99bcd0 /include/llvm/Function.h | |
parent | f3ea400830f5fffb1037c3fa785bc4677c26dee4 (diff) |
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/Function.h')
-rw-r--r-- | include/llvm/Function.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 6c3d41e21a..7ff18b376d 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -45,7 +45,7 @@ template<> struct ilist_traits<BasicBlock> static ValueSymbolTable *getSymTab(Function *ItemParent); private: - mutable ILIST_NODE<BasicBlock> Sentinel; + mutable ilist_half_node<BasicBlock> Sentinel; }; template<> struct ilist_traits<Argument> @@ -62,7 +62,7 @@ template<> struct ilist_traits<Argument> static ValueSymbolTable *getSymTab(Function *ItemParent); private: - mutable ILIST_NODE<Argument> Sentinel; + mutable ilist_half_node<Argument> Sentinel; }; class Function : public GlobalValue, |