diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-02-26 22:02:02 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-02-26 22:02:02 +0000 |
commit | e8fd00dab005c400aab9a3054a83e0a641632814 (patch) | |
tree | 02d2a54a9910110b54755093df56553778c70a99 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | f3c8209c77615bc6c28da14edd9bcb7383246e0c (diff) | |
download | bcm5719-llvm-e8fd00dab005c400aab9a3054a83e0a641632814.tar.gz bcm5719-llvm-e8fd00dab005c400aab9a3054a83e0a641632814.zip |
Simplify arange output.
Move SectionMap to its only user (emitDebugARanges) and
reorder to save a call to sort.
llvm-svn: 230693
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 8d0d9918e5d..1c0e163f5ff 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -201,10 +201,6 @@ class DwarfDebug : public AsmPrinterHandler { // Size of each symbol emitted (for those symbols that have a specific size). DenseMap<const MCSymbol *, uint64_t> SymSize; - // Provides a unique id per text section. - typedef DenseMap<const MCSection *, SmallVector<SymbolCU, 8> > SectionMapType; - SectionMapType SectionMap; - LexicalScopes LScopes; // Collection of abstract variables. @@ -371,10 +367,6 @@ class DwarfDebug : public AsmPrinterHandler { /// processed. void finalizeModuleInfo(); - /// \brief Emit labels to close any remaining sections that have been left - /// open. - void endSections(); - /// \brief Emit the debug info section. void emitDebugInfo(); |