diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-09 00:00:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-09 00:00:57 +0000 |
commit | b67d69df658b1b60a40ce2dfe33c1f32e20c33bb (patch) | |
tree | 82766c53e937908b38904c643aaba66ef40546bb /lib/CodeGen/AsmPrinter/DwarfPrinter.cpp | |
parent | c3421bb80559c3103e5e52af11a92a02848b13b7 (diff) |
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/CodeGen/AsmPrinter/DwarfPrinter.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfPrinter.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp b/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp index 1d21488e2b..a40bd54f8c 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, |