From: Devang Patel Date: Thu, 8 Oct 2009 20:41:17 +0000 (+0000) Subject: Clear variable debug info map at the end of the function. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=85d29e2de30cf49956558e45246b998f6d9ed985;p=oota-llvm.git Clear variable debug info map at the end of the function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83571 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineModuleInfo.cpp b/lib/CodeGen/MachineModuleInfo.cpp index 8661b9ee132..b62803f105e 100644 --- a/lib/CodeGen/MachineModuleInfo.cpp +++ b/lib/CodeGen/MachineModuleInfo.cpp @@ -76,6 +76,9 @@ void MachineModuleInfo::EndFunction() { FilterEnds.clear(); CallsEHReturn = 0; CallsUnwindInit = 0; +#ifdef ATTACH_DEBUG_INFO_TO_AN_INSN + VariableDbgInfo.clear(); +#endif } /// AnalyzeModule - Scan the module for global debug information.