[llvm] [AMDGPU] SIPeepholeSDWA: Add REG_SEQUENCE support (PR #133087)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 08:36:01 PDT 2025
================
@@ -278,11 +281,16 @@ static void copyRegOperand(MachineOperand &To, const MachineOperand &From) {
}
}
+static bool isSameReg(const MachineOperand &Op, Register Reg) {
+ return Op.isReg() && Op.getReg() == Reg;
+}
+
+static bool isSameReg(const MachineOperand &Op, Register Reg, unsigned SubReg) {
----------------
arsenm wrote:
Probably should just use TargetInstrInfo::RegSubRegPair
https://github.com/llvm/llvm-project/pull/133087
More information about the llvm-commits
mailing list