YJIT: Turn on dead code lint for the stats module

This commit is contained in:
Alan Wu 2025-01-30 18:00:53 -05:00 committed by Alan Wu
parent 7e733ca551
commit 95bf359087

View File

@ -1,8 +1,6 @@
//! Everything related to the collection of runtime stats in YJIT
//! See the stats feature and the --yjit-stats command-line option
#![allow(dead_code)] // Counters are only used with the stats features
use std::alloc::{GlobalAlloc, Layout, System};
use std::ptr::addr_of_mut;
use std::sync::atomic::{AtomicUsize, Ordering};