Skip to content

Commit

Permalink
print_instruction impl for ECOP and EPAR opcodes
Browse files Browse the repository at this point in the history
  • Loading branch information
zees-dev committed Jan 22, 2025
1 parent bd4870f commit 22cca73
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sway-core/src/asm_generation/finalized_asm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,8 @@ fn print_instruction(op: &Instruction) {
Instruction::ECAL(x) => f("ECAL", x.unpack()),
Instruction::BSIZ(x) => f("BSIZ", x.unpack()),
Instruction::BLDD(x) => f("BLDD", x.unpack()),
Instruction::ECOP(x) => f("ECOP", x.unpack()),
Instruction::EPAR(x) => f("EPAR", x.unpack()),
}
}

Expand Down

0 comments on commit 22cca73

Please sign in to comment.