summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2014-05-07 23:35:53 +0000
committerLang Hames <lhames@gmail.com>2014-05-07 23:35:53 +0000
commit52298507e816d928bc2dd4610cc317539bfae958 (patch)
tree3ae9a8dc9c610d0807e1c288ce47049793985706 /lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
parent04d60023af34b84dd98959f622e7cb46fe5593c4 (diff)
downloadllvm-52298507e816d928bc2dd4610cc317539bfae958.tar.gz
llvm-52298507e816d928bc2dd4610cc317539bfae958.tar.bz2
llvm-52298507e816d928bc2dd4610cc317539bfae958.tar.xz
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
Diffstat (limited to 'lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp')
-rw-r--r--lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
index d415514df0..0956761187 100644
--- a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
+++ b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
@@ -620,8 +620,6 @@ void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
}
void RuntimeDyldImpl::resolveExternalSymbols() {
- StringMap<RelocationList> ProcessedSymbols;
-
while (!ExternalSymbolRelocations.empty()) {
StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin();
@@ -667,20 +665,8 @@ 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<RelocationList>::iterator I = ProcessedSymbols.begin(),
- E = ProcessedSymbols.end();
- I != E; ++I) {
- ExternalSymbolRelocations[I->first()] = I->second;
- }
}
//===----------------------------------------------------------------------===//