summaryrefslogtreecommitdiff
path: root/yjit/src/codegen.rs
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2023-07-20 12:54:59 -0700
committerGitHub <[email protected]>2023-07-20 15:54:59 -0400
commitc4ef3d767bc901d410cbaaf91f9eba02556552a7 (patch)
tree0370abdcf6376499865d33628812590d0aef5a44 /yjit/src/codegen.rs
parentb71f79dd1782cf3af2462b879bcc4bc55f0bcd34 (diff)
YJIT: Rename exec_instruction to yjit_insns_count (#8102)
Notes
Notes: Merged-By: maximecb <[email protected]>
Diffstat (limited to 'yjit/src/codegen.rs')
-rw-r--r--yjit/src/codegen.rs2
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;