diff options
author | Tanya Lattner <tonic@nondot.org> | 2004-05-24 07:14:35 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2004-05-24 07:14:35 +0000 |
commit | 17fb34bf8cd10a798c9206eeef3bff151b4d3688 (patch) | |
tree | 72126cdeed098322eb84db0a85df34eb35175ca6 /include/llvm/CodeGen/MachineBasicBlock.h | |
parent | b11a99bd39ec12733527bde330302b435b8d9f1a (diff) |
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
Diffstat (limited to 'include/llvm/CodeGen/MachineBasicBlock.h')
-rw-r--r-- | include/llvm/CodeGen/MachineBasicBlock.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index 4dfda90ae8..3dee00da31 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -71,7 +71,8 @@ public: Number(-1), Parent(0) { Insts.parent = this; } - ~MachineBasicBlock() {} + + ~MachineBasicBlock(); /// getBasicBlock - Return the LLVM basic block that this instance /// corresponded to originally. |