[llvm] 2de7b6c - [ExecutionEngine] Use DenseMap::insert_range (NFC) (#133847)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 22:11:37 PDT 2025
Author: Kazu Hirata
Date: 2025-03-31T22:11:34-07:00
New Revision: 2de7b6ca4e978e5acb9530ed5495d490fb3c9501
URL: https://github.com/llvm/llvm-project/commit/2de7b6ca4e978e5acb9530ed5495d490fb3c9501
DIFF: https://github.com/llvm/llvm-project/commit/2de7b6ca4e978e5acb9530ed5495d490fb3c9501.diff
LOG: [ExecutionEngine] Use DenseMap::insert_range (NFC) (#133847)
We can safely switch to insert_range here because LR starts out empty.
Also, *Result is a DenseMap, so we know that the keys are unique.
Added:
Modified:
llvm/lib/ExecutionEngine/Orc/LinkGraphLinkingLayer.cpp
Removed:
################################################################################
diff --git a/llvm/lib/ExecutionEngine/Orc/LinkGraphLinkingLayer.cpp b/llvm/lib/ExecutionEngine/Orc/LinkGraphLinkingLayer.cpp
index 941a9bdae7059..edb29d99f47bb 100644
--- a/llvm/lib/ExecutionEngine/Orc/LinkGraphLinkingLayer.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/LinkGraphLinkingLayer.cpp
@@ -108,8 +108,7 @@ class LinkGraphLinkingLayer::JITLinkCtx final : public JITLinkContext {
LookupContinuation->run(Result.takeError());
else {
AsyncLookupResult LR;
- for (auto &KV : *Result)
- LR[KV.first] = KV.second;
+ LR.insert_range(*Result);
LookupContinuation->run(std::move(LR));
}
};
More information about the llvm-commits
mailing list