[llvm] [AMDGPU] Avoid repeated hash lookups (NFC) (PR #127573)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 18 01:21:35 PST 2025


================
@@ -384,13 +384,14 @@ class AMDGPUWaitSGPRHazards {
       }
     }
 
-    bool Changed = State != BlockState[&MBB].Out;
+    auto &BS = BlockState[&MBB];
----------------
kazutakahirata wrote:

I've replaced `auto` with `BlockHazardState`.  Thanks!

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


More information about the llvm-commits mailing list