[lld] 00cb966 - [lld] Use *Set::insert_range (NFC) (#132590)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 22 21:57:10 PDT 2025
Author: Kazu Hirata
Date: 2025-03-22T21:57:06-07:00
New Revision: 00cb966209955878cee903068333d4d2d4f7b259
URL: https://github.com/llvm/llvm-project/commit/00cb966209955878cee903068333d4d2d4f7b259
DIFF: https://github.com/llvm/llvm-project/commit/00cb966209955878cee903068333d4d2d4f7b259.diff
LOG: [lld] Use *Set::insert_range (NFC) (#132590)
DenseSet, SmallPtrSet, SmallSet, SetVector, and StringSet recently
gained C++23-style insert_range. This patch replaces:
Dest.insert(Src.begin(), Src.end());
with:
Dest.insert_range(Src);
Added:
Modified:
lld/ELF/LinkerScript.cpp
lld/wasm/Writer.cpp
Removed:
################################################################################
diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp
index 0d5b383f4b596..e19823f2ea752 100644
--- a/lld/ELF/LinkerScript.cpp
+++ b/lld/ELF/LinkerScript.cpp
@@ -797,7 +797,7 @@ void LinkerScript::processSectionCommands() {
if (!potentialSpillLists.empty()) {
DenseSet<StringRef> insertNames;
for (InsertCommand &ic : insertCommands)
- insertNames.insert(ic.names.begin(), ic.names.end());
+ insertNames.insert_range(ic.names);
for (SectionCommand *&base : sectionCommands) {
auto *osd = dyn_cast<OutputDesc>(base);
if (!osd)
diff --git a/lld/wasm/Writer.cpp b/lld/wasm/Writer.cpp
index cf315de76b4ca..f4ba182ee5079 100644
--- a/lld/wasm/Writer.cpp
+++ b/lld/wasm/Writer.cpp
@@ -588,7 +588,7 @@ void Writer::populateTargetFeatures() {
if (ctx.arg.extraFeatures.has_value()) {
auto &extraFeatures = *ctx.arg.extraFeatures;
- allowed.insert(extraFeatures.begin(), extraFeatures.end());
+ allowed.insert_range(extraFeatures);
}
// Only infer used features if user did not specify features
@@ -596,7 +596,7 @@ void Writer::populateTargetFeatures() {
if (!inferFeatures) {
auto &explicitFeatures = *ctx.arg.features;
- allowed.insert(explicitFeatures.begin(), explicitFeatures.end());
+ allowed.insert_range(explicitFeatures);
if (!ctx.arg.checkFeatures)
goto done;
}
More information about the llvm-commits
mailing list