Description:
The original insert instruction, BytesOp::Ins(_, _, _, _) => INSTR_DEL, I think it should be BytesOp::Ins(_, _, _, _) => INSTR_INS.
Ibid, for the del instruction, BytesOp::Del(_, _, _, _, _, _, _, _, _) => INSTR_INS, I think it should be BytesOp::Del(_, _, _, _, _, _, _, _, _) => INSTR_DEL.
Description: The original insert instruction,
BytesOp::Ins(_, _, _, _) => INSTR_DEL
, I think it should beBytesOp::Ins(_, _, _, _) => INSTR_INS
. Ibid, for the del instruction,BytesOp::Del(_, _, _, _, _, _, _, _, _) => INSTR_INS
, I think it should beBytesOp::Del(_, _, _, _, _, _, _, _, _) => INSTR_DEL
.