inline the bool form of PrintRelDirective away, leaving just the unsigned form.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98106 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp b/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
index b8f9ba1..86a1ead 100644
--- a/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
@@ -77,13 +77,6 @@
   return 0;
 }
 
-void DwarfPrinter::PrintRelDirective(bool Force32Bit) const {
-  if (Force32Bit || TD->getPointerSize() == sizeof(int32_t))
-    O << MAI->getData32bitsDirective();
-  else
-    O << MAI->getData64bitsDirective();
-}
-
 void DwarfPrinter::PrintRelDirective(unsigned Encoding) const {
   unsigned Size = SizeOfEncodedValue(Encoding);
   assert((Size == 4 || Size == 8) && "Do not support other types or rels!");
@@ -211,7 +204,10 @@
   }
   
   // FIXME: Need an MCExpr for ".".
-  PrintRelDirective(Force32Bit);
+  if (Force32Bit || TD->getPointerSize() == sizeof(int32_t))
+    O << MAI->getData32bitsDirective();
+  else
+    O << MAI->getData64bitsDirective();
   O << *Sym;
   if (IsPCRelative) O << "-" << MAI->getPCSymbol();
 }