We never emit info into the macro info section, stop emitting an

empty one.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196849 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2013-12-10 00:26:10 +00:00
parent 3dd4e46746
commit 8c087da028
2 changed files with 0 additions and 15 deletions

View File

@ -1180,9 +1180,6 @@ void DwarfDebug::endModule() {
// Emit info into a debug ranges section. // Emit info into a debug ranges section.
emitDebugRanges(); emitDebugRanges();
// Emit info into a debug macinfo section.
emitDebugMacInfo();
if (useSplitDwarf()) { if (useSplitDwarf()) {
emitDebugStrDWO(); emitDebugStrDWO();
emitDebugInfoDWO(); emitDebugInfoDWO();
@ -2941,15 +2938,6 @@ void DwarfDebug::emitDebugRanges() {
} }
} }
// Emit visible names into a debug macinfo section.
void DwarfDebug::emitDebugMacInfo() {
if (const MCSection *LineInfo =
Asm->getObjFileLowering().getDwarfMacroInfoSection()) {
// Start the dwarf macinfo section.
Asm->OutStreamer.SwitchSection(LineInfo);
}
}
// DWARF5 Experimental Separate Dwarf emitters. // DWARF5 Experimental Separate Dwarf emitters.
// This DIE has the following attributes: DW_AT_comp_dir, DW_AT_stmt_list, // This DIE has the following attributes: DW_AT_comp_dir, DW_AT_stmt_list,

View File

@ -587,9 +587,6 @@ class DwarfDebug : public AsmPrinterHandler {
/// \brief Emit visible names into a debug ranges section. /// \brief Emit visible names into a debug ranges section.
void emitDebugRanges(); void emitDebugRanges();
/// \brief Emit visible names into a debug macinfo section.
void emitDebugMacInfo();
/// \brief Emit inline info using custom format. /// \brief Emit inline info using custom format.
void emitDebugInlineInfo(); void emitDebugInlineInfo();