File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ pub mod metadata;
143143pub mod mir {
144144 pub mod repr;
145145 pub mod tcx;
146+ pub mod visit;
146147}
147148
148149pub mod session;
Original file line number Diff line number Diff line change 88// option. This file may not be copied, modified, or distributed
99// except according to those terms.
1010
11- use rustc :: middle:: ty:: Region ;
12- use rustc :: mir:: repr:: * ;
11+ use middle:: ty:: Region ;
12+ use mir:: repr:: * ;
1313
1414pub trait Visitor < ' tcx > {
1515 // Override these, and call `self.super_xxx` to revert back to the
Original file line number Diff line number Diff line change @@ -34,5 +34,4 @@ pub mod mir_map;
3434mod hair;
3535mod graphviz;
3636pub mod transform;
37- pub mod visit;
3837
Original file line number Diff line number Diff line change 1313
1414use rustc_data_structures:: fnv:: FnvHashSet ;
1515use rustc:: mir:: repr as mir;
16- use rustc_mir :: visit:: { Visitor , LvalueContext } ;
16+ use rustc :: mir :: visit:: { Visitor , LvalueContext } ;
1717use trans:: common:: { self , Block } ;
1818use super :: rvalue;
1919
You can’t perform that action at this time.
0 commit comments