[llvm] r219085 - Remove unused map

David Blaikie dblaikie at gmail.com
Sun Oct 5 09:31:13 PDT 2014


Author: dblaikie
Date: Sun Oct  5 11:31:13 2014
New Revision: 219085

URL: http://llvm.org/viewvc/llvm-project?rev=219085&view=rev
Log:
Remove unused map

This became unnecessary/unused in r208636

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp?rev=219085&r1=219084&r2=219085&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp Sun Oct  5 11:31:13 2014
@@ -409,8 +409,6 @@ DwarfDebug::constructInlinedScopeDIE(Dwa
 
   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,

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h?rev=219085&r1=219084&r2=219085&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h Sun Oct  5 11:31:13 2014
@@ -215,10 +215,6 @@ class DwarfDebug : public AsmPrinterHand
   // 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;





More information about the llvm-commits mailing list