X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FExecutionEngine%2FRuntimeDyld%2FRuntimeDyld.cpp;h=d415514df0fb66ea5c4bc1c5d121142cfa45280c;hb=318659742325cb41797a93b9e7932509c708ec23;hp=0956761187d6064e1daa9965a004d4dcf67503e1;hpb=44ff92f64a995d4db7019e92198909dbcdd4d703;p=oota-llvm.git diff --git a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp index 0956761187d..d415514df0f 100644 --- a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp +++ b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp @@ -620,6 +620,8 @@ void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs, } void RuntimeDyldImpl::resolveExternalSymbols() { + StringMap ProcessedSymbols; + while (!ExternalSymbolRelocations.empty()) { StringMap::iterator i = ExternalSymbolRelocations.begin(); @@ -665,8 +667,20 @@ void RuntimeDyldImpl::resolveExternalSymbols() { resolveRelocationList(Relocs, Addr); } + ProcessedSymbols[i->first()] = i->second; 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::iterator I = ProcessedSymbols.begin(), + E = ProcessedSymbols.end(); + I != E; ++I) { + ExternalSymbolRelocations[I->first()] = I->second; + } } //===----------------------------------------------------------------------===//