[llvm] [sancov] Use heterogeneous lookups with std::map (NFC) (PR #113406)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 22 20:01:15 PDT 2024
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/113406
None
>From d64d09405acb0e17cf99fa9ed5298a0503b91652 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Tue, 22 Oct 2024 08:03:07 -0700
Subject: [PATCH] [sancov] Use heterogeneous lookups with std::map (NFC)
---
llvm/tools/sancov/sancov.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/llvm/tools/sancov/sancov.cpp b/llvm/tools/sancov/sancov.cpp
index b969fc651e0c1c..39feff62391fe1 100644
--- a/llvm/tools/sancov/sancov.cpp
+++ b/llvm/tools/sancov/sancov.cpp
@@ -1049,7 +1049,7 @@ readSymbolizeAndMergeCmdArguments(std::vector<std::string> FileNames) {
{
// Short name => file name.
- std::map<std::string, std::string> ObjFiles;
+ std::map<std::string, std::string, std::less<>> ObjFiles;
std::string FirstObjFile;
std::set<std::string> CovFiles;
@@ -1066,7 +1066,7 @@ readSymbolizeAndMergeCmdArguments(std::vector<std::string> FileNames) {
CovFiles.insert(FileName);
} else {
auto ShortFileName = llvm::sys::path::filename(FileName);
- if (ObjFiles.find(std::string(ShortFileName)) != ObjFiles.end()) {
+ if (ObjFiles.find(ShortFileName) != ObjFiles.end()) {
fail("Duplicate binary file with a short name: " + ShortFileName);
}
@@ -1089,7 +1089,7 @@ readSymbolizeAndMergeCmdArguments(std::vector<std::string> FileNames) {
FileName);
}
- auto Iter = ObjFiles.find(std::string(Components[1]));
+ auto Iter = ObjFiles.find(Components[1]);
if (Iter == ObjFiles.end()) {
fail("Object file for coverage not found: " + FileName);
}
More information about the llvm-commits
mailing list