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;
1818
1919use hir:: ConstContext ;
2020use required_consts:: RequiredConstsVisitor ;
21+ use rustc_const_eval:: check_consts:: { self , ConstCx } ;
2122use rustc_const_eval:: util;
2223use rustc_data_structures:: fx:: FxIndexSet ;
2324use rustc_data_structures:: steal:: Steal ;
@@ -34,6 +35,7 @@ use rustc_middle::mir::{
3435use rustc_middle:: ty:: { self , TyCtxt , TypeVisitableExt } ;
3536use rustc_middle:: util:: Providers ;
3637use rustc_middle:: { bug, query, span_bug} ;
38+ use rustc_mir_dataflow:: rustc_peek;
3739use rustc_span:: source_map:: Spanned ;
3840use rustc_span:: { sym, DUMMY_SP } ;
3941use rustc_trait_selection:: traits;
@@ -108,9 +110,6 @@ mod unreachable_enum_branching;
108110mod unreachable_prop;
109111mod validate;
110112
111- use rustc_const_eval:: check_consts:: { self , ConstCx } ;
112- use rustc_mir_dataflow:: rustc_peek;
113-
114113rustc_fluent_macro:: fluent_messages! { "../messages.ftl" }
115114
116115pub fn provide ( providers : & mut Providers ) {
You can’t perform that action at this time.
0 commit comments