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
This commit is contained in:
Chris Lattner
2010-03-09 23:54:52 +00:00
parent 233f52be36
commit 4aeaca4053
2 changed files with 4 additions and 9 deletions

View File

@@ -77,13 +77,6 @@ unsigned DwarfPrinter::SizeOfEncodedValue(unsigned Encoding) const {
return 0; 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 { void DwarfPrinter::PrintRelDirective(unsigned Encoding) const {
unsigned Size = SizeOfEncodedValue(Encoding); unsigned Size = SizeOfEncodedValue(Encoding);
assert((Size == 4 || Size == 8) && "Do not support other types or rels!"); 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 ".". // FIXME: Need an MCExpr for ".".
PrintRelDirective(Force32Bit); if (Force32Bit || TD->getPointerSize() == sizeof(int32_t))
O << MAI->getData32bitsDirective();
else
O << MAI->getData64bitsDirective();
O << *Sym; O << *Sym;
if (IsPCRelative) O << "-" << MAI->getPCSymbol(); if (IsPCRelative) O << "-" << MAI->getPCSymbol();
} }

View File

@@ -89,7 +89,6 @@ public:
unsigned SizeOfEncodedValue(unsigned Encoding) const; unsigned SizeOfEncodedValue(unsigned Encoding) const;
void PrintRelDirective(unsigned Encoding) const; void PrintRelDirective(unsigned Encoding) const;
void PrintRelDirective(bool Force32Bit = false) const;
/// EmitEncodingByte - Emit a .byte 42 directive that corresponds to an /// EmitEncodingByte - Emit a .byte 42 directive that corresponds to an
/// encoding. If verbose assembly output is enabled, we output comments /// encoding. If verbose assembly output is enabled, we output comments