From: David Blaikie Date: Sun, 5 Oct 2014 16:31:13 +0000 (+0000) Subject: Remove unused map X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=446817b4ef197188c213a1f60f37446ee9c57862;p=oota-llvm.git Remove unused map This became unnecessary/unused in r208636 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219085 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 7b413519f30..2559120edaa 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -409,8 +409,6 @@ DwarfDebug::constructInlinedScopeDIE(DwarfCompileUnit &TheCU, attachRangesOrLowHighPC(TheCU, *ScopeDIE, Scope->getRanges()); - InlinedSubprogramDIEs.insert(OriginDIE); - // Add the call site information to the DIE. DILocation DL(Scope->getInlinedAt()); TheCU.addUInt(*ScopeDIE, dwarf::DW_AT_call_file, None, diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h index 70702736e6e..f25825c678f 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -215,10 +215,6 @@ class DwarfDebug : public AsmPrinterHandler { // can refer to them in spite of insertions into this list. SmallVector DotDebugLocEntries; - // Collection of subprogram DIEs that are marked (at the end of the module) - // as DW_AT_inline. - SmallPtrSet InlinedSubprogramDIEs; - // This is a collection of subprogram MDNodes that are processed to // create DIEs. SmallPtrSet ProcessedSPNodes;