[llvm] bb75a96 - [Support] Avoid repeated hash lookups (NFC) (#127747)

via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 19 08:21:38 PST 2025


Author: Kazu Hirata
Date: 2025-02-19T08:21:33-08:00
New Revision: bb75a96900ad52b01e51fc42c3533a6febf97e27

URL: https://github.com/llvm/llvm-project/commit/bb75a96900ad52b01e51fc42c3533a6febf97e27
DIFF: https://github.com/llvm/llvm-project/commit/bb75a96900ad52b01e51fc42c3533a6febf97e27.diff

LOG: [Support] Avoid repeated hash lookups (NFC) (#127747)

Added: 
    

Modified: 
    llvm/include/llvm/Support/DebugCounter.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Support/DebugCounter.h b/llvm/include/llvm/Support/DebugCounter.h
index e4345e5739e99..8e9dc29e4f48a 100644
--- a/llvm/include/llvm/Support/DebugCounter.h
+++ b/llvm/include/llvm/Support/DebugCounter.h
@@ -162,8 +162,9 @@ class DebugCounter {
 protected:
   unsigned addCounter(const std::string &Name, const std::string &Desc) {
     unsigned Result = RegisteredCounters.insert(Name);
-    Counters[Result] = {};
-    Counters[Result].Desc = Desc;
+    auto &C = Counters[Result];
+    C = {};
+    C.Desc = Desc;
     return Result;
   }
   // Struct to store counter info.


        


More information about the llvm-commits mailing list