File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
compiler/rustc_mir_transform/src Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ extern crate tracing;
18
18
19
19
use hir:: ConstContext ;
20
20
use required_consts:: RequiredConstsVisitor ;
21
+ use rustc_const_eval:: check_consts:: { self , ConstCx } ;
21
22
use rustc_const_eval:: util;
22
23
use rustc_data_structures:: fx:: FxIndexSet ;
23
24
use rustc_data_structures:: steal:: Steal ;
@@ -34,6 +35,7 @@ use rustc_middle::mir::{
34
35
use rustc_middle:: ty:: { self , TyCtxt , TypeVisitableExt } ;
35
36
use rustc_middle:: util:: Providers ;
36
37
use rustc_middle:: { bug, query, span_bug} ;
38
+ use rustc_mir_dataflow:: rustc_peek;
37
39
use rustc_span:: source_map:: Spanned ;
38
40
use rustc_span:: { sym, DUMMY_SP } ;
39
41
use rustc_trait_selection:: traits;
@@ -108,9 +110,6 @@ mod unreachable_enum_branching;
108
110
mod unreachable_prop;
109
111
mod validate;
110
112
111
- use rustc_const_eval:: check_consts:: { self , ConstCx } ;
112
- use rustc_mir_dataflow:: rustc_peek;
113
-
114
113
rustc_fluent_macro:: fluent_messages! { "../messages.ftl" }
115
114
116
115
pub fn provide ( providers : & mut Providers ) {
You can’t perform that action at this time.
0 commit comments