Remove unused map
authorDavid Blaikie <dblaikie@gmail.com>
Sun, 5 Oct 2014 16:31:13 +0000 (16:31 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Sun, 5 Oct 2014 16:31:13 +0000 (16:31 +0000)
This became unnecessary/unused in r208636

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219085 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DwarfDebug.cpp
lib/CodeGen/AsmPrinter/DwarfDebug.h

index 7b413519f301a679a4918b6dc9157988c52edca1..2559120edaa235082a7dc8bf41e37d88b0b42906 100644 (file)
@@ -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,
index 70702736e6e99b5600d6ca51bd38f455eb8e7dfd..f25825c678fcb8c7aae8eb594a28e02dce232c42 100644 (file)
@@ -215,10 +215,6 @@ class DwarfDebug : public AsmPrinterHandler {
   // can refer to them in spite of insertions into this list.
   SmallVector<DebugLocList, 4> DotDebugLocEntries;
 
-  // Collection of subprogram DIEs that are marked (at the end of the module)
-  // as DW_AT_inline.
-  SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
-
   // This is a collection of subprogram MDNodes that are processed to
   // create DIEs.
   SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;