diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-03-27 20:49:35 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-03-27 20:49:35 +0000 |
| commit | c03f44ca8a20002f12891d75bb27313086457954 (patch) | |
| tree | b8cea7e4c033ab54faf8f6d937a2c3c69f0d883e /llvm/lib/Target/SystemZ | |
| parent | a3c3b8104d13f61f3aaadd0a9872db21f8381607 (diff) | |
| download | bcm5719-llvm-c03f44ca8a20002f12891d75bb27313086457954.tar.gz bcm5719-llvm-c03f44ca8a20002f12891d75bb27313086457954.zip | |
Remove another unused argument.
llvm-svn: 204961
Diffstat (limited to 'llvm/lib/Target/SystemZ')
| -rw-r--r-- | llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp index 6fa81ec91ad..76e1d24a937 100644 --- a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp +++ b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp @@ -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) { |

