diff --git a/src/arch/isa_parser/operand_types.py b/src/arch/isa_parser/operand_types.py index 113cc2f982..174a54cd4c 100755 --- a/src/arch/isa_parser/operand_types.py +++ b/src/arch/isa_parser/operand_types.py @@ -372,7 +372,6 @@ class VecRegOperand(RegOperand): def makeWrite(self): return f""" - xc->setRegOperand(this, {self.dest_reg_idx}, &tmp_d{self.dest_reg_idx}); if (traceData) {{ traceData->setData({self.reg_class}, &tmp_d{self.dest_reg_idx}); }} diff --git a/src/arch/riscv/insts/vector.hh b/src/arch/riscv/insts/vector.hh index 8098c98b78..fb6c7821b5 100644 --- a/src/arch/riscv/insts/vector.hh +++ b/src/arch/riscv/insts/vector.hh @@ -579,7 +579,6 @@ class VMaskMergeMicroInst : public VectorArithMicroInst memcpy(Vd + i * byte_offset, s + i * byte_offset, byte_offset); } } - xc->setRegOperand(this, 0, &tmp_d0); if (traceData) traceData->setData(vecRegClass, &tmp_d0); return NoFault;