From 91fa3a9908b8eb852efa32b0eae73a9b777fe9a7 Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Mon, 24 May 2004 07:14:35 +0000 Subject: Moved MachineBasicBlock deconstructor to cpp file and removed it from LeakDetector to fix memory leak bug. llvm-svn: 13718 --- llvm/lib/CodeGen/MachineFunction.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/CodeGen/MachineFunction.cpp') diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index a3e9211..54149c3 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -98,9 +98,9 @@ void ilist_traits::transferNodesFromList( ilist_iterator first, ilist_iterator 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() { -- cgit v1.1