[llvm] [AMDGPU][True16][CodeGen] fix moveToVALU with proper subreg access in true16 (PR #131859)
Brox Chen via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 12:22:31 PDT 2025
================
@@ -257,7 +257,13 @@ static bool tryChangeVGPRtoSGPRinCopy(MachineInstr &MI,
return false;
}
// Change VGPR to SGPR destination.
- MRI.setRegClass(DstReg, TRI->getEquivalentSGPRClass(MRI.getRegClass(DstReg)));
+ const auto *RC = MRI.getRegClass(DstReg);
----------------
broxigarchen wrote:
Run some tests and confirmed that this should be removed
https://github.com/llvm/llvm-project/pull/131859
More information about the llvm-commits
mailing list