[llvm] [CodeGen] Avoid repeated hash lookups (NFC) (PR #128300)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 22 02:24:15 PST 2025


================
@@ -1545,24 +1545,21 @@ void HoistSpillHelper::runHoistSpills(
     for (MachineDomTreeNode *Child : (*RIt)->children()) {
       if (!SpillsInSubTreeMap.contains(Child))
         continue;
-      // The stmt "SpillsInSubTree = SpillsInSubTreeMap[*RIt].first" below
+      // The stmt "auto &[...] = SpillsInSubTreeMap[*RIt]" below
----------------
kazutakahirata wrote:

I've restored the variable name.

https://github.com/llvm/llvm-project/pull/128300


More information about the llvm-commits mailing list