@@ -1073,8 +1073,6 @@ pub struct Resolver<'ra, 'tcx> {
10731073 import_res_map : NodeMap < PerNS < Option < Res > > > ,
10741074 /// An import will be inserted into this map if it has been used.
10751075 import_use_map : FxHashMap < Import < ' ra > , Used > ,
1076- /// Resolutions for labels (node IDs of their corresponding blocks or loops).
1077- label_res_map : NodeMap < NodeId > ,
10781076 /// Resolutions for lifetimes.
10791077 lifetimes_res_map : NodeMap < LifetimeRes > ,
10801078 /// Lifetime parameters that lowering will have to introduce.
@@ -1499,7 +1497,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
14991497 partial_res_map : Default :: default ( ) ,
15001498 import_res_map : Default :: default ( ) ,
15011499 import_use_map : Default :: default ( ) ,
1502- label_res_map : Default :: default ( ) ,
15031500 lifetimes_res_map : Default :: default ( ) ,
15041501 extra_lifetime_params_map : Default :: default ( ) ,
15051502 extern_crate_map : Default :: default ( ) ,
@@ -1705,7 +1702,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
17051702 owners : self . owners ,
17061703 partial_res_map : self . partial_res_map ,
17071704 import_res_map : self . import_res_map ,
1708- label_res_map : self . label_res_map ,
17091705 lifetimes_res_map : self . lifetimes_res_map ,
17101706 extra_lifetime_params_map : self . extra_lifetime_params_map ,
17111707 next_node_id : self . next_node_id ,
0 commit comments