summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/SystemZ
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2017-06-24 00:26:57 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2017-06-24 00:26:57 +0000
commitf351292141f4cbbce38292cf44baa50d7eee6c34 (patch)
tree4af68dc2111fbe5ad7d8697cdb61a4ac7be296fd /llvm/lib/Target/SystemZ
parent538da58dc5ce7e5b3dca16ed2395760a11e1825c (diff)
downloadbcm5719-llvm-f351292141f4cbbce38292cf44baa50d7eee6c34.tar.gz
bcm5719-llvm-f351292141f4cbbce38292cf44baa50d7eee6c34.zip
Remove redundant argument.
llvm-svn: 306189
Diffstat (limited to 'llvm/lib/Target/SystemZ')
-rw-r--r--llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
index 69e275ef203..6b32a792643 100644
--- a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
+++ b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
@@ -52,7 +52,7 @@ public:
const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const override;
void applyFixup(const MCAssembler &Asm, const MCFixup &Fixup,
const MCValue &Target, MutableArrayRef<char> Data,
- uint64_t Value, bool IsPCRel, MCContext &Ctx) const override;
+ uint64_t Value, bool IsPCRel) const override;
bool mayNeedRelaxation(const MCInst &Inst) const override {
return false;
}
@@ -94,7 +94,7 @@ void SystemZMCAsmBackend::applyFixup(const MCAssembler &Asm,
const MCFixup &Fixup,
const MCValue &Target,
MutableArrayRef<char> Data, uint64_t Value,
- bool IsPCRel, MCContext &Ctx) const {
+ bool IsPCRel) const {
MCFixupKind Kind = Fixup.getKind();
unsigned Offset = Fixup.getOffset();
unsigned BitSize = getFixupKindInfo(Kind).TargetSize;
OpenPOWER on IntegriCloud