mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-26 23:24:34 +00:00
Remove another unused argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204961 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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<SparcMCExpr>(Fixup.getValue())) {
|
||||
if (SExpr->getKind() == SparcMCExpr::VK_Sparc_R_DISP32)
|
||||
|
Reference in New Issue
Block a user