aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2013-10-15 20:26:37 +0000
committerAdrian Prantl <aprantl@apple.com>2013-10-15 20:26:37 +0000
commit73df4b9f5742023838ffa4eb36638a437e728193 (patch)
treedadc29266659bbf6622ad62623e1dee144d0615f /lib/CodeGen/AsmPrinter/DwarfDebug.cpp
parent05ac87f864a34bff0e6f2a029d48eab3e4cb464a (diff)
downloadexternal_llvm-73df4b9f5742023838ffa4eb36638a437e728193.zip
external_llvm-73df4b9f5742023838ffa4eb36638a437e728193.tar.gz
external_llvm-73df4b9f5742023838ffa4eb36638a437e728193.tar.bz2
Remove some dead code. (DarwinGDBCompat was retired in r189903).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192731 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfDebug.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
index 4bebecd..a9bd0b4 100644
--- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
@@ -196,9 +196,8 @@ DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M)
DwarfAbbrevDWOSectionSym = DwarfStrDWOSectionSym = 0;
FunctionBeginSym = FunctionEndSym = 0;
- // Turn on accelerator tables and older gdb compatibility
- // for Darwin by default, pubnames by default for non-Darwin,
- // and handle split dwarf.
+ // Turn on accelerator tables for Darwin by default, pubnames by
+ // default for non-Darwin, and handle split dwarf.
bool IsDarwin = Triple(A->getTargetTriple()).isOSDarwin();
if (DwarfAccelTables == Default)
@@ -223,8 +222,6 @@ DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M)
beginModule();
}
}
-DwarfDebug::~DwarfDebug() {
-}
// Switch to the specified MCSection and emit an assembler
// temporary label to it if SymbolStem is specified.