summaryrefslogtreecommitdiff
path: root/lib/Target/AArch64
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-03-27 20:49:35 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-03-27 20:49:35 +0000
commit74dcb03fa912a4b3b32eda19eea57b4fa56f5cc7 (patch)
tree32bdedf36ad693e9ad236e1f39c9bbef73a28c5f /lib/Target/AArch64
parentb0a50a3f293c2239f65b65f93849a5a85d0c2bb9 (diff)
downloadllvm-74dcb03fa912a4b3b32eda19eea57b4fa56f5cc7.tar.gz
llvm-74dcb03fa912a4b3b32eda19eea57b4fa56f5cc7.tar.bz2
llvm-74dcb03fa912a4b3b32eda19eea57b4fa56f5cc7.tar.xz
Remove another unused argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204961 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/AArch64')
-rw-r--r--lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp b/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
index f2c067e03e..a5fe9141e6 100644
--- a/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
+++ b/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
@@ -29,7 +29,7 @@ public:
protected:
unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
- bool IsPCRel, bool IsRelocWithSymbol) const override;
+ bool IsPCRel) const override;
private:
};
@@ -45,8 +45,7 @@ AArch64ELFObjectWriter::~AArch64ELFObjectWriter()
unsigned AArch64ELFObjectWriter::GetRelocType(const MCValue &Target,
const MCFixup &Fixup,
- bool IsPCRel,
- bool IsRelocWithSymbol) const {
+ bool IsPCRel) const {
unsigned Type;
if (IsPCRel) {
switch ((unsigned)Fixup.getKind()) {