diff options
Diffstat (limited to 'yjit/src/codegen.rs')
-rw-r--r-- | yjit/src/codegen.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs index c8c29630ce..ab436d5022 100644 --- a/yjit/src/codegen.rs +++ b/yjit/src/codegen.rs @@ -850,7 +850,7 @@ pub fn gen_single_block( // :count-placement: // Count bytecode instructions that execute in generated code. // Note that the increment happens even when the output takes side exit. - gen_counter_incr(&mut asm, Counter::exec_instruction); + gen_counter_incr(&mut asm, Counter::yjit_insns_count); // Lookup the codegen function for this instruction let mut status = None; |