[llvm] [AMDGPU] Remove s_delay_alu for VALU->SGPR->SALU (PR #127212)
Jay Foad via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 24 07:47:09 PST 2025
================
@@ -340,6 +366,7 @@ class AMDGPUInsertDelayAlu : public MachineFunctionPass {
bool Changed = false;
MachineInstr *LastDelayAlu = nullptr;
+ MCRegUnit lastSGPRfromVALU = 0;
----------------
jayfoad wrote:
Capitalize variable names:
```suggestion
MCRegUnit LastSGPRfromVALU = 0;
```
https://github.com/llvm/llvm-project/pull/127212
More information about the llvm-commits
mailing list