mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-09 10:20: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:
@@ -25,7 +25,7 @@ public:
|
||||
protected:
|
||||
// Override MCELFObjectTargetWriter.
|
||||
unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
|
||||
bool IsPCRel, bool IsRelocWithSymbol) const override;
|
||||
bool IsPCRel) const override;
|
||||
const MCSymbol *ExplicitRelSym(const MCAssembler &Asm, const MCValue &Target,
|
||||
const MCFragment &F, const MCFixup &Fixup,
|
||||
bool IsPCRel) const override;
|
||||
@@ -83,8 +83,8 @@ static unsigned getPLTReloc(unsigned Kind) {
|
||||
}
|
||||
|
||||
unsigned SystemZObjectWriter::GetRelocType(const MCValue &Target,
|
||||
const MCFixup &Fixup, bool IsPCRel,
|
||||
bool IsRelocWithSymbol) const {
|
||||
const MCFixup &Fixup,
|
||||
bool IsPCRel) const {
|
||||
MCSymbolRefExpr::VariantKind Modifier = Fixup.getAccessVariant();
|
||||
unsigned Kind = Fixup.getKind();
|
||||
switch (Modifier) {
|
||||
|
||||
Reference in New Issue
Block a user