summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
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
commitc03f44ca8a20002f12891d75bb27313086457954 (patch)
treeb8cea7e4c033ab54faf8f6d937a2c3c69f0d883e /llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
parenta3c3b8104d13f61f3aaadd0a9872db21f8381607 (diff)
downloadbcm5719-llvm-c03f44ca8a20002f12891d75bb27313086457954.tar.gz
bcm5719-llvm-c03f44ca8a20002f12891d75bb27313086457954.zip
Remove another unused argument.
llvm-svn: 204961
Diffstat (limited to 'llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp')
-rw-r--r--llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp b/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
index f2c067e03ec..a5fe9141e65 100644
--- a/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
+++ b/llvm/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()) {
OpenPOWER on IntegriCloud