summaryrefslogtreecommitdiffstats
path: root/llvm/lib
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
commitd7bfe4bb860c25d3f6adf163336c35708ff18683 (patch)
tree286d30496995dd39f65a9e8b60b1c4a2d3156770 /llvm/lib
parentb13cda8f3e9bdd784553a79351cd05fc83464965 (diff)
downloadbcm5719-llvm-d7bfe4bb860c25d3f6adf163336c35708ff18683.tar.gz
bcm5719-llvm-d7bfe4bb860c25d3f6adf163336c35708ff18683.zip
Back out r208257 while I investigate tester failures.
llvm-svn: 208267
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
index d415514df0f..0956761187d 100644
--- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
+++ b/llvm/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;
- }
}
//===----------------------------------------------------------------------===//
OpenPOWER on IntegriCloud