mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-30 02:25:19 +00:00
Back out r208257 while I investigate tester failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208267 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -620,8 +620,6 @@ void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
|
|||||||
}
|
}
|
||||||
|
|
||||||
void RuntimeDyldImpl::resolveExternalSymbols() {
|
void RuntimeDyldImpl::resolveExternalSymbols() {
|
||||||
StringMap<RelocationList> ProcessedSymbols;
|
|
||||||
|
|
||||||
while (!ExternalSymbolRelocations.empty()) {
|
while (!ExternalSymbolRelocations.empty()) {
|
||||||
StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin();
|
StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin();
|
||||||
|
|
||||||
@@ -667,20 +665,8 @@ void RuntimeDyldImpl::resolveExternalSymbols() {
|
|||||||
resolveRelocationList(Relocs, Addr);
|
resolveRelocationList(Relocs, Addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
ProcessedSymbols[i->first()] = i->second;
|
|
||||||
ExternalSymbolRelocations.erase(i);
|
ExternalSymbolRelocations.erase(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Restore the relocation entries that were consumed in the loop above:
|
|
||||||
//
|
|
||||||
// FIXME: Replace the following loop with:
|
|
||||||
// std::swap(ProcessedSymbols, ExternalSymbolRelocations)
|
|
||||||
// once StringMap has copy and move construction.
|
|
||||||
for (StringMap<RelocationList>::iterator I = ProcessedSymbols.begin(),
|
|
||||||
E = ProcessedSymbols.end();
|
|
||||||
I != E; ++I) {
|
|
||||||
ExternalSymbolRelocations[I->first()] = I->second;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
Reference in New Issue
Block a user