summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MCTargetDesc
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-03-27 20:41:17 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-03-27 20:41:17 +0000
commit0c0cd3a4ee0a9bf48b396b2c94bbd0504f2e0e57 (patch)
tree495ef110e38e257d7291e1662c800c116dcd0f4b /lib/Target/Mips/MCTargetDesc
parent63b11ef6d40b719d555c1398ca05b1f477ecfe39 (diff)
downloadllvm-0c0cd3a4ee0a9bf48b396b2c94bbd0504f2e0e57.tar.gz
llvm-0c0cd3a4ee0a9bf48b396b2c94bbd0504f2e0e57.tar.bz2
llvm-0c0cd3a4ee0a9bf48b396b2c94bbd0504f2e0e57.tar.xz
Remove unused argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204956 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MCTargetDesc')
-rw-r--r--lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp b/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
index aa9b42337c..dd41ddf6c9 100644
--- a/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
+++ b/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
@@ -39,9 +39,8 @@ namespace {
virtual ~MipsELFObjectWriter();
- virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
- bool IsPCRel, bool IsRelocWithSymbol,
- int64_t Addend) const;
+ unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
+ bool IsPCRel, bool IsRelocWithSymbol) const override;
virtual const MCSymbol *ExplicitRelSym(const MCAssembler &Asm,
const MCValue &Target,
const MCFragment &F,
@@ -78,8 +77,7 @@ const MCSymbol *MipsELFObjectWriter::ExplicitRelSym(const MCAssembler &Asm,
unsigned MipsELFObjectWriter::GetRelocType(const MCValue &Target,
const MCFixup &Fixup,
bool IsPCRel,
- bool IsRelocWithSymbol,
- int64_t Addend) const {
+ bool IsRelocWithSymbol) const {
// determine the type of the relocation
unsigned Type = (unsigned)ELF::R_MIPS_NONE;
unsigned Kind = (unsigned)Fixup.getKind();