diff options
author | Alan Wu <[email protected]> | 2024-11-20 17:13:31 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-11-20 17:13:31 -0500 |
commit | bf718cef592d9c6c3229c2da0ee1169cfefa17c6 (patch) | |
tree | 1a24123b3684ddc8c0b8fa31590b8eebeb5cfcb5 /yjit | |
parent | f6e6e6687069cbefa5ba777d98d1f90b566b4ada (diff) |
YJIT: Make compilation_failure a default stat (#12128)
It's good to monitor compilation failures.
Notes
Notes:
Merged-By: maximecb <[email protected]>
Diffstat (limited to 'yjit')
-rw-r--r-- | yjit/src/stats.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yjit/src/stats.rs b/yjit/src/stats.rs index 874a9e9b70..7c51eaf9f2 100644 --- a/yjit/src/stats.rs +++ b/yjit/src/stats.rs @@ -281,6 +281,7 @@ pub const DEFAULT_COUNTERS: &'static [Counter] = &[ Counter::deleted_defer_block_count, Counter::compiled_branch_count, Counter::compile_time_ns, + Counter::compilation_failure, Counter::max_inline_versions, Counter::inline_block_count, Counter::num_contexts_encoded, |