remove the suffix form of PrintLabelName, which was only

used for 'flavor'.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98012 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2010-03-09 00:00:57 +00:00
parent c3421bb805
commit b67d69df65
2 changed files with 0 additions and 10 deletions

View File

@ -218,14 +218,6 @@ void DwarfPrinter::PrintLabelName(const MCSymbol *Label) const {
O << Label->getName();
}
void DwarfPrinter::PrintLabelName(const char *Tag, unsigned Number,
const char *Suffix) const {
// FIXME: REMOVE.
O << MAI->getPrivateGlobalPrefix() << Tag;
if (Number) O << Number;
O << Suffix;
}
/// EmitReference - Emit a reference to a label.
///
void DwarfPrinter::EmitReference(const MCSymbol *Sym, bool IsPCRelative,

View File

@ -117,8 +117,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 char *Suffix) const;
/// EmitReference - Emit a reference to a label.
///