diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-10-24 17:57:34 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-10-24 17:57:34 +0000 |
commit | 80e5b1ebd1f25159f01f55f20e2992c316d3985a (patch) | |
tree | 19ef1023bff36f10c77fa56e5648fcc445cec000 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 514253cf433f305e2844545330f80681e43ab9a6 (diff) | |
download | bcm5719-llvm-80e5b1ebd1f25159f01f55f20e2992c316d3985a.tar.gz bcm5719-llvm-80e5b1ebd1f25159f01f55f20e2992c316d3985a.zip |
DebugInfo: Sink DwarfDebug::ScopeVariables down into DwarfFile
(part of refactoring to allow subprogram emission in both the skeleton
and main units to enable -gmlt-like data to be included in the skeleton
for live inlined backtracing purposes)
llvm-svn: 220578
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 2c7955dd087..c1215c046f7 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -193,11 +193,6 @@ class DwarfDebug : public AsmPrinterHandler { // Collection of abstract subprogram DIEs. DenseMap<const MDNode *, DIE *> AbstractSPDies; - // Collection of dbg variables of a scope. - typedef DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> > - ScopeVariablesMap; - ScopeVariablesMap ScopeVariables; - // Collection of abstract variables. DenseMap<const MDNode *, std::unique_ptr<DbgVariable>> AbstractVariables; SmallVector<std::unique_ptr<DbgVariable>, 64> ConcreteVariables; @@ -659,8 +654,6 @@ public: return AbstractSPDies; } - ScopeVariablesMap &getScopeVariables() { return ScopeVariables; } - SmallPtrSet<const MDNode *, 16> &getProcessedSPNodes() { return ProcessedSPNodes; } |