From: Jim Laskey Date: Wed, 4 Jan 2006 13:43:56 +0000 (+0000) Subject: Moving MachineDebugInfo to module level location. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f99c232506f134107f9ae02c118fe31685e6b06c;p=oota-llvm.git Moving MachineDebugInfo to module level location. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25090 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index f51176ff210..f0ece6b3dbb 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/lib/CodeGen/MachineFunction.cpp @@ -108,7 +108,7 @@ void ilist_traits::transferNodesFromList( MachineFunction::MachineFunction(const Function *F, const TargetMachine &TM) - : Annotation(MF_AID), Fn(F), Target(TM), UsedPhysRegs(0), DebugInfo() { + : Annotation(MF_AID), Fn(F), Target(TM), UsedPhysRegs(0) { SSARegMapping = new SSARegMap(); MFInfo = 0; FrameInfo = new MachineFrameInfo();