File tree 1 file changed +5
-5
lines changed
src/librustc_mir/dataflow
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,11 @@ pub(crate) mod indexes {
26
26
} ;
27
27
}
28
28
29
+ pub struct MoveDataParamEnv < ' tcx > {
30
+ pub ( crate ) move_data : MoveData < ' tcx > ,
31
+ pub ( crate ) param_env : ty:: ParamEnv < ' tcx > ,
32
+ }
33
+
29
34
pub ( crate ) fn has_rustc_mir_with ( attrs : & [ ast:: Attribute ] , name : Symbol ) -> Option < MetaItem > {
30
35
for attr in attrs {
31
36
if attr. check_name ( sym:: rustc_mir) {
@@ -41,11 +46,6 @@ pub(crate) fn has_rustc_mir_with(attrs: &[ast::Attribute], name: Symbol) -> Opti
41
46
None
42
47
}
43
48
44
- pub struct MoveDataParamEnv < ' tcx > {
45
- pub ( crate ) move_data : MoveData < ' tcx > ,
46
- pub ( crate ) param_env : ty:: ParamEnv < ' tcx > ,
47
- }
48
-
49
49
/// Parameterization for the precise form of data flow that is used.
50
50
///
51
51
/// `BottomValue` determines whether the initial entry set for each basic block is empty or full.
You can’t perform that action at this time.
0 commit comments