remove the suffix form of PrintLabelName, which was only
authorChris Lattner <sabre@nondot.org>
Tue, 9 Mar 2010 00:00:57 +0000 (00:00 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 9 Mar 2010 00:00:57 +0000 (00:00 +0000)
used for 'flavor'.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98012 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
lib/CodeGen/AsmPrinter/DwarfPrinter.h

index 1d21488e2b5d79bb5ea91a77e391e5486090bd1f..a40bd54f8cfbc55fe33f9c0f24b23b1fda332041 100644 (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,
index 19c05b7a70b7421b0e6aed901dffc02f4b446999..fc9f3fe9eefde4d367e4032b5055e415b7ea60d8 100644 (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.
   ///