From c03f44ca8a20002f12891d75bb27313086457954 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Thu, 27 Mar 2014 20:49:35 +0000 Subject: Remove another unused argument. llvm-svn: 204961 --- llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/Target/Sparc') diff --git a/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp b/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp index 3ab878ab2c2..bb93b904ca0 100644 --- a/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp +++ b/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp @@ -29,7 +29,7 @@ namespace { virtual ~SparcELFObjectWriter() {} protected: unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup, - bool IsPCRel, bool IsRelocWithSymbol) const override; + bool IsPCRel) const override; virtual const MCSymbol *ExplicitRelSym(const MCAssembler &Asm, const MCValue &Target, @@ -40,8 +40,8 @@ namespace { } unsigned SparcELFObjectWriter::GetRelocType(const MCValue &Target, - const MCFixup &Fixup, bool IsPCRel, - bool IsRelocWithSymbol) const { + const MCFixup &Fixup, + bool IsPCRel) const { if (const SparcMCExpr *SExpr = dyn_cast(Fixup.getValue())) { if (SExpr->getKind() == SparcMCExpr::VK_Sparc_R_DISP32) -- cgit v1.2.3