[llvm-branch-commits] [llvm] [InlineSpiller][AMDGPU] Implement subreg reload during RA spill (PR #175002)
Matt Arsenault via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Jan 8 09:33:15 PST 2026
================
@@ -1243,6 +1248,11 @@ class LLVM_ABI TargetRegisterInfo : public MCRegisterInfo {
bool checkAllSuperRegsMarked(const BitVector &RegisterSet,
ArrayRef<MCPhysReg> Exceptions = ArrayRef<MCPhysReg>()) const;
+ virtual const TargetRegisterClass *
+ getConstrainedRegClass(const TargetRegisterClass *RC) const {
+ return RC;
+ }
----------------
arsenm wrote:
Missing documuentation but this most likely shouldn't be added
https://github.com/llvm/llvm-project/pull/175002
More information about the llvm-branch-commits
mailing list