Skip to content

Commit b30f1d7

Browse files
committed
remove code not doing anything
1 parent fe9ea35 commit b30f1d7

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

compiler/rustc_middle/src/ty/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,6 @@ pub struct ResolverAstLowering {
213213

214214
pub next_node_id: ast::NodeId,
215215

216-
/// Mapping of autodiff function IDs
217-
pub autodiff_map: FxHashMap<LocalDefId, LocalDefId>,
218-
219216
pub node_id_to_def_id: NodeMap<LocalDefId>,
220217

221218
pub trait_map: NodeMap<Vec<hir::TraitCandidate>>,

compiler/rustc_resolve/src/lib.rs

-4
Original file line numberDiff line numberDiff line change
@@ -1168,8 +1168,6 @@ pub struct Resolver<'ra, 'tcx> {
11681168
node_id_to_def_id: NodeMap<Feed<'tcx, LocalDefId>>,
11691169
def_id_to_node_id: IndexVec<LocalDefId, ast::NodeId>,
11701170

1171-
autodiff_map: FxHashMap<LocalDefId, LocalDefId>,
1172-
11731171
/// Indices of unnamed struct or variant fields with unresolved attributes.
11741172
placeholder_field_indices: FxHashMap<NodeId, usize>,
11751173
/// When collecting definitions from an AST fragment produced by a macro invocation `ExpnId`
@@ -1541,7 +1539,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
15411539
next_node_id: CRATE_NODE_ID,
15421540
node_id_to_def_id,
15431541
def_id_to_node_id,
1544-
autodiff_map: Default::default(),
15451542
placeholder_field_indices: Default::default(),
15461543
invocation_parents,
15471544
trait_impl_items: Default::default(),
@@ -1671,7 +1668,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
16711668
.into_items()
16721669
.map(|(k, f)| (k, f.key()))
16731670
.collect(),
1674-
autodiff_map: self.autodiff_map,
16751671
trait_map: self.trait_map,
16761672
lifetime_elision_allowed: self.lifetime_elision_allowed,
16771673
lint_buffer: Steal::new(self.lint_buffer),

0 commit comments

Comments
 (0)