[llvm] [RISCV] Handle ADD in RISCVInstrInfo::isCopyInstrImpl (PR #81123)
Alex Bradbury via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 5 04:25:59 PST 2025
================
@@ -1579,6 +1579,12 @@ RISCVInstrInfo::isCopyInstrImpl(const MachineInstr &MI) const {
switch (MI.getOpcode()) {
default:
break;
+ case RISCV::ADD:
+ if (MI.getOperand(1).isReg() && MI.getOperand(1).getReg() == RISCV::X0)
+ return DestSourcePair{MI.getOperand(0), MI.getOperand(2)};
----------------
asb wrote:
I've added the isReg checks for the other operand for consistency.
https://github.com/llvm/llvm-project/pull/81123
More information about the llvm-commits
mailing list