File tree Expand file tree Collapse file tree 2 files changed +1
-15
lines changed
branches/try/src/librustc_back Expand file tree Collapse file tree 2 files changed +1
-15
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: a530cc9706324ad44dba464d541a807eb5afdb08
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 777435990e0e91df6b72ce80c9b6fa485eeb5daa
5
- refs/heads/try: 7cece8725b6a7e12045bdbff257ecec7327654bf
5
+ refs/heads/try: e389ab18a28b71479be6f24776845cc021767193
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
8
8
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
Original file line number Diff line number Diff line change @@ -188,7 +188,6 @@ mod svh_visitor {
188
188
SawLifetimeDef ( token:: InternedString ) ,
189
189
190
190
SawMod ,
191
- SawViewItem ,
192
191
SawForeignItem ,
193
192
SawItem ,
194
193
SawDecl ,
@@ -436,19 +435,6 @@ mod svh_visitor {
436
435
SawStmt ( saw_stmt ( & s. node ) ) . hash ( self . st ) ; visit:: walk_stmt ( self , s)
437
436
}
438
437
439
- fn visit_view_item ( & mut self , i : & ViewItem ) {
440
- // Two kinds of view items can affect the ABI for a crate:
441
- // exported `pub use` view items (since that may expose
442
- // items that downstream crates can call), and `use
443
- // foo::Trait`, since changing that may affect method
444
- // resolution.
445
- //
446
- // The simplest approach to handling both of the above is
447
- // just to adopt the same simple-minded (fine-grained)
448
- // hash that I am deploying elsewhere here.
449
- SawViewItem . hash ( self . st ) ; visit:: walk_view_item ( self , i)
450
- }
451
-
452
438
fn visit_foreign_item ( & mut self , i : & ForeignItem ) {
453
439
// FIXME (#14132) ideally we would incorporate privacy (or
454
440
// perhaps reachability) somewhere here, so foreign items
You can’t perform that action at this time.
0 commit comments