[llvm] [ExecutionEngine] Use DenseMap::insert_range (NFC) (PR #133847)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 20:25:22 PDT 2025


https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/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.


>From bee43cb69dbd419d56fec19958e8e50de0eb8943 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Sun, 30 Mar 2025 23:19:56 -0700
Subject: [PATCH] [ExecutionEngine] Use DenseMap::insert_range (NFC)

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.
---
 llvm/lib/ExecutionEngine/Orc/LinkGraphLinkingLayer.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

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