mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-12 01:25:10 +00:00
Moved MachineBasicBlock deconstructor to cpp file and removed it from LeakDetector to fix memory leak bug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13718 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -98,9 +98,9 @@ void ilist_traits<MachineBasicBlock>::transferNodesFromList(
|
||||
ilist_iterator<MachineBasicBlock> first,
|
||||
ilist_iterator<MachineBasicBlock> last)
|
||||
{
|
||||
if (parent != toList.parent)
|
||||
if (Parent != toList.Parent)
|
||||
for (; first != last; ++first)
|
||||
first->Parent = toList.parent;
|
||||
first->Parent = toList.Parent;
|
||||
}
|
||||
|
||||
MachineFunction::MachineFunction(const Function *F,
|
||||
@@ -110,7 +110,7 @@ MachineFunction::MachineFunction(const Function *F,
|
||||
MFInfo = new MachineFunctionInfo(*this);
|
||||
FrameInfo = new MachineFrameInfo();
|
||||
ConstantPool = new MachineConstantPool();
|
||||
BasicBlocks.parent = this;
|
||||
BasicBlocks.Parent = this;
|
||||
}
|
||||
|
||||
MachineFunction::~MachineFunction() {
|
||||
|
Reference in New Issue
Block a user