mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
* Make sure the string table gets read even if there isn't a foreign
symbol table. * Make sure we update the file pointer for each member when rebuilding the symbol table. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17812 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
766b793143
commit
b323113b93
@ -309,18 +309,25 @@ Archive::loadSymbolTable() {
|
||||
if (mbr->isForeignSymbolTable()) {
|
||||
// Skip the foreign symbol table, we don't do anything with it
|
||||
At += mbr->getSize();
|
||||
if (mbr->getSize() % 2 != 0)
|
||||
At++;
|
||||
delete mbr;
|
||||
|
||||
// See if there's a string table too
|
||||
// Read the next one
|
||||
FirstFile = At;
|
||||
mbr = parseMemberHeader(At,End);
|
||||
}
|
||||
|
||||
if (mbr->isStringTable()) {
|
||||
// Process the string table entry
|
||||
strtab.assign((const char*)mbr->getData(),mbr->getSize());
|
||||
At += mbr->getSize();
|
||||
if (mbr->getSize() % 2 != 0)
|
||||
At++;
|
||||
delete mbr;
|
||||
// Get the next one
|
||||
FirstFile = At;
|
||||
mbr = parseMemberHeader(At,End);
|
||||
if (mbr->isStringTable()) {
|
||||
strtab.assign((const char*)mbr->getData(),mbr->getSize());
|
||||
At += mbr->getSize();
|
||||
delete mbr;
|
||||
FirstFile = At;
|
||||
mbr = parseMemberHeader(At,End);
|
||||
}
|
||||
}
|
||||
|
||||
// See if its the symbol table
|
||||
@ -432,6 +439,11 @@ Archive::findModulesDefiningSymbols(const std::set<std::string>& symbols,
|
||||
mbr->getPath().get();
|
||||
}
|
||||
}
|
||||
|
||||
// Go to the next file location
|
||||
At += mbr->getSize();
|
||||
if (mbr->getSize() % 2 != 0)
|
||||
At++;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -309,18 +309,25 @@ Archive::loadSymbolTable() {
|
||||
if (mbr->isForeignSymbolTable()) {
|
||||
// Skip the foreign symbol table, we don't do anything with it
|
||||
At += mbr->getSize();
|
||||
if (mbr->getSize() % 2 != 0)
|
||||
At++;
|
||||
delete mbr;
|
||||
|
||||
// See if there's a string table too
|
||||
// Read the next one
|
||||
FirstFile = At;
|
||||
mbr = parseMemberHeader(At,End);
|
||||
}
|
||||
|
||||
if (mbr->isStringTable()) {
|
||||
// Process the string table entry
|
||||
strtab.assign((const char*)mbr->getData(),mbr->getSize());
|
||||
At += mbr->getSize();
|
||||
if (mbr->getSize() % 2 != 0)
|
||||
At++;
|
||||
delete mbr;
|
||||
// Get the next one
|
||||
FirstFile = At;
|
||||
mbr = parseMemberHeader(At,End);
|
||||
if (mbr->isStringTable()) {
|
||||
strtab.assign((const char*)mbr->getData(),mbr->getSize());
|
||||
At += mbr->getSize();
|
||||
delete mbr;
|
||||
FirstFile = At;
|
||||
mbr = parseMemberHeader(At,End);
|
||||
}
|
||||
}
|
||||
|
||||
// See if its the symbol table
|
||||
@ -432,6 +439,11 @@ Archive::findModulesDefiningSymbols(const std::set<std::string>& symbols,
|
||||
mbr->getPath().get();
|
||||
}
|
||||
}
|
||||
|
||||
// Go to the next file location
|
||||
At += mbr->getSize();
|
||||
if (mbr->getSize() % 2 != 0)
|
||||
At++;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user