YJIT: Fix an unused field warning in DumpDisasm.

This commit is contained in:
Kevin Menard 2024-06-17 16:29:43 -04:00 committed by Alan Wu
parent 657c8db8de
commit 91bbb78313

View File

@ -125,6 +125,7 @@ pub enum DumpDisasm {
// Dump to stdout
Stdout,
// Dump to "yjit_{pid}.log" file under the specified directory
#[cfg_attr(not(feature = "disasm"), allow(dead_code))]
File(std::os::unix::io::RawFd),
}