aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-09 00:00:57 +0000
committerChris Lattner <sabre@nondot.org>2010-03-09 00:00:57 +0000
commitb67d69df658b1b60a40ce2dfe33c1f32e20c33bb (patch)
tree82766c53e937908b38904c643aaba66ef40546bb /lib
parentc3421bb80559c3103e5e52af11a92a02848b13b7 (diff)
downloadexternal_llvm-b67d69df658b1b60a40ce2dfe33c1f32e20c33bb.zip
external_llvm-b67d69df658b1b60a40ce2dfe33c1f32e20c33bb.tar.gz
external_llvm-b67d69df658b1b60a40ce2dfe33c1f32e20c33bb.tar.bz2
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
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfPrinter.cpp8
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfPrinter.h2
2 files changed, 0 insertions, 10 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp b/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
index 1d21488..a40bd54 100644
--- a/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
@@ -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,
diff --git a/lib/CodeGen/AsmPrinter/DwarfPrinter.h b/lib/CodeGen/AsmPrinter/DwarfPrinter.h
index 19c05b7..fc9f3fe 100644
--- a/lib/CodeGen/AsmPrinter/DwarfPrinter.h
+++ b/lib/CodeGen/AsmPrinter/DwarfPrinter.h
@@ -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.
///