Skip to content

Commit

Permalink
fix bug: calling before_instruction instead of after
Browse files Browse the repository at this point in the history
  • Loading branch information
joonazan committed Aug 28, 2024
1 parent f4bf057 commit 55a1829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/instruction_handlers/ret.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ pub(crate) fn free_panic<T: Tracer, W>(
vm,
&Arguments::new(Predicate::Always, 0, ModeRequirements::none()),
);
tracer.before_instruction::<opcodes::Ret<Panic>, _>(vm);
tracer.after_instruction::<opcodes::Ret<Panic>, _>(vm);
result
}

Expand Down

0 comments on commit 55a1829

Please sign in to comment.