inline the bool form of PrintRelDirective away, leaving just the unsigned form.
authorChris Lattner <sabre@nondot.org>
Tue, 9 Mar 2010 23:54:52 +0000 (23:54 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 9 Mar 2010 23:54:52 +0000 (23:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98106 91177308-0d34-0410-b5e6-96231b3b80d8

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

index b8f9ba193c571a6f256673dd980afd2eb884b1b1..86a1ead71d0feae1b69525792231ac9dfdd97500 100644 (file)
@@ -77,13 +77,6 @@ unsigned DwarfPrinter::SizeOfEncodedValue(unsigned Encoding) const {
   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 @@ void DwarfPrinter::EmitReference(const MCSymbol *Sym, bool IsPCRelative,
   }
   
   // 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();
 }
index e45a7accbe7045db1b9036131c5ea706001712b3..0fe45e4cc302ea3bd7a844c643890a7a0106e777 100644 (file)
@@ -89,7 +89,6 @@ public:
   unsigned SizeOfEncodedValue(unsigned Encoding) const;
 
   void PrintRelDirective(unsigned Encoding) const;
-  void PrintRelDirective(bool Force32Bit = false) const;
 
   /// EmitEncodingByte - Emit a .byte 42 directive that corresponds to an
   /// encoding.  If verbose assembly output is enabled, we output comments