mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
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
This commit is contained in:
@@ -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,
|
||||
|
Reference in New Issue
Block a user