File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ pub mod middle {
139
139
pub mod mir {
140
140
pub mod repr;
141
141
pub mod tcx;
142
+ pub mod visit;
142
143
}
143
144
144
145
pub mod session;
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- use rustc :: middle:: ty:: Region ;
12
- use rustc :: mir:: repr:: * ;
11
+ use middle:: ty:: Region ;
12
+ use mir:: repr:: * ;
13
13
14
14
pub trait Visitor < ' tcx > {
15
15
// 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;
34
34
mod hair;
35
35
mod graphviz;
36
36
pub mod transform;
37
- pub mod visit;
38
37
Original file line number Diff line number Diff line change 13
13
14
14
use rustc_data_structures:: fnv:: FnvHashSet ;
15
15
use rustc:: mir:: repr as mir;
16
- use rustc_mir :: visit:: { Visitor , LvalueContext } ;
16
+ use rustc :: mir :: visit:: { Visitor , LvalueContext } ;
17
17
use trans:: common:: { self , Block } ;
18
18
use super :: rvalue;
19
19
You can’t perform that action at this time.
0 commit comments