Skip to content

Commit

Permalink
fix insert, del instr
Browse files Browse the repository at this point in the history
  • Loading branch information
cymqqqq committed Jul 10, 2024
1 parent 22d7ee8 commit fca233e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/isa/bytecode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -991,8 +991,8 @@ impl Bytecode for BytesOp {
BytesOp::Inj(_, _, _, _) => INSTR_INJ,
BytesOp::Join(_, _, _) => INSTR_JOIN,
BytesOp::Splt(_, _, _, _, _) => INSTR_SPLT,
BytesOp::Ins(_, _, _, _) => INSTR_DEL,
BytesOp::Del(_, _, _, _, _, _, _, _, _) => INSTR_INS,
BytesOp::Ins(_, _, _, _) => INSTR_INS,
BytesOp::Del(_, _, _, _, _, _, _, _, _) => INSTR_DEL,
BytesOp::Rev(_, _) => INSTR_REV,
}
}
Expand Down

0 comments on commit fca233e

Please sign in to comment.