forked from OSchip/llvm-project
Remove unused map
This became unnecessary/unused in r208636 llvm-svn: 219085
This commit is contained in:
parent
77b0e13aba
commit
60b8662ea7
|
@ -409,8 +409,6 @@ DwarfDebug::constructInlinedScopeDIE(DwarfCompileUnit &TheCU,
|
||||||
|
|
||||||
attachRangesOrLowHighPC(TheCU, *ScopeDIE, Scope->getRanges());
|
attachRangesOrLowHighPC(TheCU, *ScopeDIE, Scope->getRanges());
|
||||||
|
|
||||||
InlinedSubprogramDIEs.insert(OriginDIE);
|
|
||||||
|
|
||||||
// Add the call site information to the DIE.
|
// Add the call site information to the DIE.
|
||||||
DILocation DL(Scope->getInlinedAt());
|
DILocation DL(Scope->getInlinedAt());
|
||||||
TheCU.addUInt(*ScopeDIE, dwarf::DW_AT_call_file, None,
|
TheCU.addUInt(*ScopeDIE, dwarf::DW_AT_call_file, None,
|
||||||
|
|
|
@ -215,10 +215,6 @@ class DwarfDebug : public AsmPrinterHandler {
|
||||||
// can refer to them in spite of insertions into this list.
|
// can refer to them in spite of insertions into this list.
|
||||||
SmallVector<DebugLocList, 4> DotDebugLocEntries;
|
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
|
// This is a collection of subprogram MDNodes that are processed to
|
||||||
// create DIEs.
|
// create DIEs.
|
||||||
SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
|
SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
|
||||||
|
|
Loading…
Reference in New Issue