diff options
author | Noah Gibbs <[email protected]> | 2021-06-28 18:06:03 +0100 |
---|---|---|
committer | Alan Wu <[email protected]> | 2021-10-20 18:19:36 -0400 |
commit | 25792c17d44f4097ad5aedee87b4369cfdbef9f7 (patch) | |
tree | ddfcb28f7ba855d03b55bc498a57177915742b5d /yjit_core.c | |
parent | 94cb5a6b1e9243526af341b420ac1cb9c4de56c0 (diff) |
Convert yjit static stat variables to counters
Diffstat (limited to 'yjit_core.c')
-rw-r--r-- | yjit_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit_core.c b/yjit_core.c index e90347237f..c4f18e872f 100644 --- a/yjit_core.c +++ b/yjit_core.c @@ -344,7 +344,7 @@ add_block_version(blockid_t blockid, block_t* block) #if RUBY_DEBUG // First block compiled for this iseq - rb_compiled_iseq_count++; + yjit_runtime_counters.compiled_iseq_count++; #endif } |