We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d67703 commit 39bb865Copy full SHA for 39bb865
src/tools/miri/src/machine.rs
@@ -9,6 +9,7 @@ use rand::rngs::StdRng;
9
use rand::SeedableRng;
10
11
use rustc_ast::ast::Mutability;
12
+use rustc_const_eval::const_eval::CheckAlignment;
13
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
14
#[allow(unused)]
15
use rustc_data_structures::static_assert_size;
@@ -22,9 +23,8 @@ use rustc_middle::{
22
23
};
24
use rustc_span::def_id::{CrateNum, DefId};
25
use rustc_span::Symbol;
-use rustc_target::abi::{Size, Align};
26
+use rustc_target::abi::{Align, Size};
27
use rustc_target::spec::abi::Abi;
-use rustc_const_eval::const_eval::CheckAlignment;
28
29
use crate::{
30
concurrency::{data_race, weak_memory},
0 commit comments