remove another form of EmitReference.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97998 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp b/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
index 36d8521..6804628 100644
--- a/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
@@ -241,12 +241,6 @@
   if (IsPCRelative) O << "-" << MAI->getPCSymbol();
 }
 
-void DwarfPrinter::EmitReference(const char *Tag, unsigned Number,
-                                 unsigned Encoding) const {
-  // FIXME: REMOVE.
-  EmitReference(getDWLabel(Tag, Number), Encoding);
-}
-
 void DwarfPrinter::EmitReference(const MCSymbol *Sym, unsigned Encoding) const {
   const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
 
@@ -259,7 +253,7 @@
 
   PrintRelDirective(Encoding);
   O << *TLOF.getSymbolForDwarfGlobalReference(GV, Asm->Mang,
-                                              Asm->MMI, Encoding);;
+                                              Asm->MMI, Encoding);
 }
 
 /// EmitDifference - Emit the difference between two labels.  If this assembler