From 22cca73da5e8cfa54c814810837681a5c5cba09c Mon Sep 17 00:00:00 2001 From: z Date: Wed, 22 Jan 2025 15:41:27 +1300 Subject: [PATCH] print_instruction impl for ECOP and EPAR opcodes --- sway-core/src/asm_generation/finalized_asm.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sway-core/src/asm_generation/finalized_asm.rs b/sway-core/src/asm_generation/finalized_asm.rs index f30811a4141..d584d6f3705 100644 --- a/sway-core/src/asm_generation/finalized_asm.rs +++ b/sway-core/src/asm_generation/finalized_asm.rs @@ -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()), } }