mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 21:44:30 +02:00
YJIT: Fix and enable the unused_imports warning
This commit is contained in:
parent
4012ba4ecf
commit
0996cf5593
1 changed files with 2 additions and 4 deletions
|
@ -1,18 +1,16 @@
|
|||
#![allow(dead_code)]
|
||||
#![allow(unused_variables)]
|
||||
#![allow(unused_imports)]
|
||||
|
||||
use std::cell::Cell;
|
||||
use std::collections::HashMap;
|
||||
use std::fmt;
|
||||
use std::convert::From;
|
||||
use std::io::Write;
|
||||
use std::mem::take;
|
||||
use crate::codegen::{gen_outlined_exit, gen_counted_exit};
|
||||
use crate::cruby::{VALUE, SIZEOF_VALUE_I32};
|
||||
use crate::virtualmem::{CodePtr};
|
||||
use crate::asm::{CodeBlock, uimm_num_bits, imm_num_bits, OutlinedCb};
|
||||
use crate::core::{Context, Type, TempMapping, RegTemps, MAX_REG_TEMPS, MAX_TEMP_TYPES};
|
||||
use crate::asm::{CodeBlock, OutlinedCb};
|
||||
use crate::core::{Context, RegTemps, MAX_REG_TEMPS};
|
||||
use crate::options::*;
|
||||
use crate::stats::*;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue