From: David Blaikie Date: Thu, 22 May 2014 00:48:36 +0000 (+0000) Subject: DebugInfo: Simplify dead variable collection slightly. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b1a3b17e7896f8f5a3fa840b0caa0edfa7eae877;p=oota-llvm.git DebugInfo: Simplify dead variable collection slightly. constructSubprogramDIE was already called for every subprogram in every CU when the module was started - there's no need to call it again at module finalization. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209372 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 4a317cf0b56..049e9e28c11 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -827,10 +827,8 @@ void DwarfDebug::collectDeadVariables() { if (Variables.getNumElements() == 0) continue; - // FIXME: See the comment in constructSubprogramDIE about duplicate - // subprogram DIEs. - constructSubprogramDIE(*SPCU, SP); DIE *SPDIE = SPCU->getDIE(SP); + assert(SPDIE); for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) { DIVariable DV(Variables.getElement(vi)); assert(DV.isVariable());