DwarfDebug: Unconditionalize trivial asm comments

While we still have a few (~4) non-trivial comments with string
concatenation, etc that should remain conditionalized, these trivial
literal comments can be simplified.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196416 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Blaikie
2013-12-04 21:51:05 +00:00
parent a18dcd4cce
commit ec112cfc45

View File

@ -2128,7 +2128,6 @@ void DwarfDebug::emitDIE(DIE *Die, ArrayRef<DIEAbbrev *> Abbrevs) {
for (unsigned j = 0, M = Children.size(); j < M; ++j)
emitDIE(Children[j], Abbrevs);
if (Asm->isVerbose())
Asm->OutStreamer.AddComment("End Of Children Mark");
Asm->EmitInt8(0);
}
@ -2484,7 +2483,6 @@ void DwarfDebug::emitDebugPubNames(bool GnuStyle) {
Asm->EmitInt8(Desc.toBits());
}
if (Asm->isVerbose())
Asm->OutStreamer.AddComment("External Name");
Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength() + 1));
}
@ -2522,7 +2520,6 @@ void DwarfDebug::emitDebugPubTypes(bool GnuStyle) {
Asm->OutStreamer.EmitLabel(BeginLabel);
if (Asm->isVerbose())
Asm->OutStreamer.AddComment("DWARF Version");
Asm->EmitInt16(dwarf::DW_PUBTYPES_VERSION);
@ -2544,7 +2541,6 @@ void DwarfDebug::emitDebugPubTypes(bool GnuStyle) {
const char *Name = GI->getKeyData();
const DIE *Entity = GI->second;
if (Asm->isVerbose())
Asm->OutStreamer.AddComment("DIE offset");
Asm->EmitInt32(Entity->getOffset());
@ -2556,7 +2552,6 @@ void DwarfDebug::emitDebugPubTypes(bool GnuStyle) {
Asm->EmitInt8(Desc.toBits());
}
if (Asm->isVerbose())
Asm->OutStreamer.AddComment("External Name");
// Emit the name with a terminating null byte.