mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
eliminate a form of PrintLabelName.
llvm-svn: 97999
This commit is contained in:
parent
bbd8af41d3
commit
81bf3f933d
@ -2969,7 +2969,7 @@ void DwarfDebug::emitDebugInlineInfo() {
|
||||
else
|
||||
O << MAI->getData64bitsDirective();
|
||||
|
||||
PrintLabelName("label", LI->first); EOL("low_pc");
|
||||
PrintLabelName(getDWLabel("label", LI->first)); EOL("low_pc");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -219,11 +219,6 @@ void DwarfPrinter::PrintLabelName(const MCSymbol *Label) const {
|
||||
O << Label->getName();
|
||||
}
|
||||
|
||||
void DwarfPrinter::PrintLabelName(const char *Tag, unsigned Number) const {
|
||||
// FIXME: REMOVE.
|
||||
O << MAI->getPrivateGlobalPrefix() << Tag;
|
||||
if (Number) O << Number;
|
||||
}
|
||||
void DwarfPrinter::PrintLabelName(const char *Tag, unsigned Number,
|
||||
const char *Suffix) const {
|
||||
// FIXME: REMOVE.
|
||||
@ -291,9 +286,9 @@ void DwarfPrinter::EmitDifference(const char *TagHi, unsigned NumberHi,
|
||||
O << "\t.set\t";
|
||||
PrintLabelName("set", SetCounter, Flavor);
|
||||
O << ",";
|
||||
PrintLabelName(TagHi, NumberHi);
|
||||
PrintLabelName(getDWLabel(TagHi, NumberHi));
|
||||
O << "-";
|
||||
PrintLabelName(TagLo, NumberLo);
|
||||
PrintLabelName(getDWLabel(TagLo, NumberLo));
|
||||
O << "\n";
|
||||
|
||||
PrintRelDirective(IsSmall);
|
||||
@ -301,9 +296,9 @@ void DwarfPrinter::EmitDifference(const char *TagHi, unsigned NumberHi,
|
||||
++SetCounter;
|
||||
} else {
|
||||
PrintRelDirective(IsSmall);
|
||||
PrintLabelName(TagHi, NumberHi);
|
||||
PrintLabelName(getDWLabel(TagHi, NumberHi));
|
||||
O << "-";
|
||||
PrintLabelName(TagLo, NumberLo);
|
||||
PrintLabelName(getDWLabel(TagLo, NumberLo));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -125,7 +125,6 @@ public:
|
||||
/// PrintLabelName - Print label name in form used by Dwarf writer.
|
||||
///
|
||||
void PrintLabelName(const MCSymbol *Label) const;
|
||||
void PrintLabelName(const char *Tag, unsigned Number) const;
|
||||
void PrintLabelName(const char *Tag, unsigned Number,
|
||||
const char *Suffix) const;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user