From f97b99e41cc67a545a14d06fba59bff6f5741d07 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 11 Feb 2015 21:08:00 +0000 Subject: [PATCH] Remove unused argument. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228873 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/MC/ELFObjectWriter.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/MC/ELFObjectWriter.cpp b/lib/MC/ELFObjectWriter.cpp index aecdb654645..4672c4d5cef 100644 --- a/lib/MC/ELFObjectWriter.cpp +++ b/lib/MC/ELFObjectWriter.cpp @@ -251,8 +251,7 @@ class ELFObjectWriter : public MCObjectWriter { SectionIndexMapTy &SectionIndexMap, const RelMapTy &RelMap); - void CreateRelocationSections(MCAssembler &Asm, MCAsmLayout &Layout, - RelMapTy &RelMap); + void CreateRelocationSections(MCAssembler &Asm, RelMapTy &RelMap); void CompressDebugSections(MCAssembler &Asm, MCAsmLayout &Layout); @@ -1118,7 +1117,6 @@ ELFObjectWriter::computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout, } void ELFObjectWriter::CreateRelocationSections(MCAssembler &Asm, - MCAsmLayout &Layout, RelMapTy &RelMap) { for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it) { @@ -1721,7 +1719,7 @@ void ELFObjectWriter::WriteObject(MCAssembler &Asm, CompressDebugSections(Asm, const_cast(Layout)); DenseMap RelMap; - CreateRelocationSections(Asm, const_cast(Layout), RelMap); + CreateRelocationSections(Asm, RelMap); const unsigned NumUserAndRelocSections = Asm.size(); CreateIndexedSections(Asm, const_cast(Layout), GroupMap, -- 2.34.1