mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-17 08:57:34 +00:00
Convert a member variable to a local one.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241284 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4e0f6008b9
commit
9561506e34
@ -116,8 +116,6 @@ class ELFObjectWriter : public MCObjectWriter {
|
||||
unsigned StringTableIndex;
|
||||
// This holds the .symtab section index.
|
||||
unsigned SymbolTableIndex;
|
||||
// This holds the .symtab_shndx section index.
|
||||
unsigned SymtabShndxSectionIndex = 0;
|
||||
|
||||
// Sections in the order they are to be output in the section table.
|
||||
std::vector<const MCSectionELF *> SectionTable;
|
||||
@ -144,7 +142,6 @@ class ELFObjectWriter : public MCObjectWriter {
|
||||
Renames.clear();
|
||||
Relocations.clear();
|
||||
StrTabBuilder.clear();
|
||||
SymtabShndxSectionIndex = 0;
|
||||
SectionTable.clear();
|
||||
MCObjectWriter::reset();
|
||||
}
|
||||
@ -867,6 +864,9 @@ void ELFObjectWriter::computeSymbolTable(
|
||||
ExternalSymbolData.push_back(MSD);
|
||||
}
|
||||
|
||||
// This holds the .symtab_shndx section index.
|
||||
unsigned SymtabShndxSectionIndex = 0;
|
||||
|
||||
if (HasLargeSectionIndex) {
|
||||
MCSectionELF *SymtabShndxSection =
|
||||
Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
|
||||
|
Loading…
Reference in New Issue
Block a user