Skip to content

Commit

Permalink
Merge pull request #119 from cymqqqq/fix-instr-ins-del
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky authored Jul 10, 2024
2 parents 22d7ee8 + fca233e commit 9746c94
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 9746c94

Please sign in to comment.