diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-04-07 19:00:17 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-04-07 19:00:17 +0000 |
commit | ea1b394bf491f465d9071f4d8390ed501bb1e9b0 (patch) | |
tree | 7bcb5eecb7d5202819c852e2814406827102c616 /llvm/lib/MC/ELFObjectWriter.cpp | |
parent | 32c7265a1200d5a1462fd654c914b841dcaac5ba (diff) | |
download | bcm5719-llvm-ea1b394bf491f465d9071f4d8390ed501bb1e9b0.tar.gz bcm5719-llvm-ea1b394bf491f465d9071f4d8390ed501bb1e9b0.zip |
Remove unused argument.
llvm-svn: 234342
Diffstat (limited to 'llvm/lib/MC/ELFObjectWriter.cpp')
-rw-r--r-- | llvm/lib/MC/ELFObjectWriter.cpp | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/llvm/lib/MC/ELFObjectWriter.cpp b/llvm/lib/MC/ELFObjectWriter.cpp index 6105b25b8bf..3fa857e69ac 100644 --- a/llvm/lib/MC/ELFObjectWriter.cpp +++ b/llvm/lib/MC/ELFObjectWriter.cpp @@ -256,8 +256,7 @@ class ELFObjectWriter : public MCObjectWriter { /// \param NumRegularSections - Number of non-relocation sections. void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout, const SectionIndexMapTy &SectionIndexMap, - const RevGroupMapTy &RevGroupMap, - unsigned NumRegularSections); + const RevGroupMapTy &RevGroupMap); void computeIndexMap(MCAssembler &Asm, SectionIndexMapTy &SectionIndexMap); @@ -990,11 +989,10 @@ void ELFObjectWriter::computeIndexMap(MCAssembler &Asm, } } -void -ELFObjectWriter::computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout, - const SectionIndexMapTy &SectionIndexMap, - const RevGroupMapTy &RevGroupMap, - unsigned NumRegularSections) { +void ELFObjectWriter::computeSymbolTable( + MCAssembler &Asm, const MCAsmLayout &Layout, + const SectionIndexMapTy &SectionIndexMap, + const RevGroupMapTy &RevGroupMap) { // FIXME: Is this the correct place to do this? // FIXME: Why is an undefined reference to _GLOBAL_OFFSET_TABLE_ needed? if (NeedsGOT) { @@ -1695,8 +1693,7 @@ void ELFObjectWriter::WriteObject(MCAssembler &Asm, unsigned NumRegularSections = NumUserSections + NumIndexedSections; // Compute symbol table information. - computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, - NumRegularSections); + computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap); WriteRelocations(Asm, const_cast<MCAsmLayout &>(Layout)); |