[llvm] r237940 - Remove unused argument. NFC.
Rafael Espindola
rafael.espindola at gmail.com
Thu May 21 12:42:35 PDT 2015
Author: rafael
Date: Thu May 21 14:42:35 2015
New Revision: 237940
URL: http://llvm.org/viewvc/llvm-project?rev=237940&view=rev
Log:
Remove unused argument. NFC.
Modified:
llvm/trunk/lib/MC/ELFObjectWriter.cpp
Modified: llvm/trunk/lib/MC/ELFObjectWriter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/ELFObjectWriter.cpp?rev=237940&r1=237939&r2=237940&view=diff
==============================================================================
--- llvm/trunk/lib/MC/ELFObjectWriter.cpp (original)
+++ llvm/trunk/lib/MC/ELFObjectWriter.cpp Thu May 21 14:42:35 2015
@@ -253,8 +253,7 @@ class ELFObjectWriter : public MCObjectW
bool isWeak(const MCSymbol &Sym) const override;
void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
- void writeSection(MCAssembler &Asm,
- const SectionIndexMapTy &SectionIndexMap,
+ void writeSection(const SectionIndexMapTy &SectionIndexMap,
uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
const MCSectionELF &Section);
};
@@ -1250,11 +1249,9 @@ const MCSectionELF *ELFObjectWriter::cre
return StrtabSection;
}
-void ELFObjectWriter::writeSection(MCAssembler &Asm,
- const SectionIndexMapTy &SectionIndexMap,
- uint32_t GroupSymbolIndex,
- uint64_t Offset, uint64_t Size,
- const MCSectionELF &Section) {
+void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
+ uint32_t GroupSymbolIndex, uint64_t Offset,
+ uint64_t Size, const MCSectionELF &Section) {
uint64_t sh_link = 0;
uint64_t sh_info = 0;
@@ -1326,7 +1323,7 @@ void ELFObjectWriter::writeSectionHeader
uint64_t Size = Type == ELF::SHT_NOBITS ? Layout.getSectionAddressSize(&SD)
: Offsets.second - Offsets.first;
- writeSection(Asm, SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
+ writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
*Section);
}
}
More information about the llvm-commits
mailing list