mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +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:
@ -20,14 +20,20 @@
|
||||
#include "Support/LeakDetector.h"
|
||||
using namespace llvm;
|
||||
|
||||
MachineBasicBlock::~MachineBasicBlock() {
|
||||
LeakDetector::removeGarbageObject(this);
|
||||
}
|
||||
|
||||
|
||||
|
||||
// MBBs start out as #-1. When a MBB is added to a MachineFunction, it
|
||||
// gets the next available unique MBB number. If it is removed from a
|
||||
// MachineFunction, it goes back to being #-1.
|
||||
void ilist_traits<MachineBasicBlock>::addNodeToList (MachineBasicBlock* N)
|
||||
{
|
||||
assert(N->Parent == 0 && "machine instruction already in a basic block");
|
||||
N->Parent = parent;
|
||||
N->Number = parent->getNextMBBNumber();
|
||||
N->Parent = Parent;
|
||||
N->Number = Parent->getNextMBBNumber();
|
||||
LeakDetector::removeGarbageObject(N);
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user