diff options
| author | David Blaikie <dblaikie@gmail.com> | 2014-03-11 22:24:33 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2014-03-11 22:24:33 +0000 |
| commit | ee89a064bb838206f3458e3ab270bdbfa6fcbc9a (patch) | |
| tree | 168d557c8b3950a7d2d0f454174826667c17c8c0 | |
| parent | afc50b3ed4b97d9060d9d56fde840217875492a6 (diff) | |
| download | bcm5719-llvm-ee89a064bb838206f3458e3ab270bdbfa6fcbc9a.tar.gz bcm5719-llvm-ee89a064bb838206f3458e3ab270bdbfa6fcbc9a.zip | |
DebugInfo: Remove unused labels now that we just emit DW_AT_gnu_pubnames as a flag (as of r203082)
llvm-svn: 203612
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 5c17417c51e..f4eb787adbf 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -2213,10 +2213,6 @@ void DwarfDebug::emitDebugPubNames(bool GnuStyle) { // Start the dwarf pubnames section. Asm->OutStreamer.SwitchSection(PSec); - // Emit a label so we can reference the beginning of this pubname section. - if (GnuStyle) - Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("gnu_pubnames", ID)); - // Emit the header. Asm->OutStreamer.AddComment("Length of Public Names Info"); MCSymbol *BeginLabel = Asm->GetTempSymbol("pubnames_begin", ID); @@ -2274,10 +2270,6 @@ void DwarfDebug::emitDebugPubTypes(bool GnuStyle) { // Start the dwarf pubtypes section. Asm->OutStreamer.SwitchSection(PSec); - // Emit a label so we can reference the beginning of this pubtype section. - if (GnuStyle) - Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("gnu_pubtypes", ID)); - // Emit the header. Asm->OutStreamer.AddComment("Length of Public Types Info"); MCSymbol *BeginLabel = Asm->GetTempSymbol("pubtypes_begin", ID); |

