diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-02-11 23:11:18 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-02-11 23:11:18 +0000 |
commit | ef6baea74e4690911943637a4f660579391414b1 (patch) | |
tree | 9b113b11a576e5d0100cfc85a674093fc9343d0c /llvm/lib/MC/ELFObjectWriter.cpp | |
parent | ab2b25bc97a3918e9dfa21a23ece09efcc84972d (diff) | |
download | bcm5719-llvm-ef6baea74e4690911943637a4f660579391414b1.tar.gz bcm5719-llvm-ef6baea74e4690911943637a4f660579391414b1.zip |
Remove unused argument. NFC.
llvm-svn: 228884
Diffstat (limited to 'llvm/lib/MC/ELFObjectWriter.cpp')
-rw-r--r-- | llvm/lib/MC/ELFObjectWriter.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/llvm/lib/MC/ELFObjectWriter.cpp b/llvm/lib/MC/ELFObjectWriter.cpp index c6033e2fd43..600d06472fc 100644 --- a/llvm/lib/MC/ELFObjectWriter.cpp +++ b/llvm/lib/MC/ELFObjectWriter.cpp @@ -259,8 +259,7 @@ class ELFObjectWriter : public MCObjectWriter { const RelMapTy &RelMap); void CreateMetadataSections(MCAssembler &Asm, MCAsmLayout &Layout, - SectionIndexMapTy &SectionIndexMap, - const RelMapTy &RelMap); + SectionIndexMapTy &SectionIndexMap); // Create the sections that show up in the symbol table. Currently // those are the .note.GNU-stack section and the group sections. @@ -1395,10 +1394,8 @@ void ELFObjectWriter::WriteRelocationsFragment(const MCAssembler &Asm, } } -void ELFObjectWriter::CreateMetadataSections(MCAssembler &Asm, - MCAsmLayout &Layout, - SectionIndexMapTy &SectionIndexMap, - const RelMapTy &RelMap) { +void ELFObjectWriter::CreateMetadataSections( + MCAssembler &Asm, MCAsmLayout &Layout, SectionIndexMapTy &SectionIndexMap) { MCContext &Ctx = Asm.getContext(); MCDataFragment *F; @@ -1737,8 +1734,7 @@ void ELFObjectWriter::WriteObject(MCAssembler &Asm, CreateMetadataSections(const_cast<MCAssembler&>(Asm), const_cast<MCAsmLayout&>(Layout), - SectionIndexMap, - RelMap); + SectionIndexMap); uint64_t NaturalAlignment = is64Bit() ? 8 : 4; uint64_t HeaderSize = is64Bit() ? sizeof(ELF::Elf64_Ehdr) : |