Skip to content

Commit b287b56

Browse files
committed
Auto merge of #75635 - Aaron1011:fix/incr-fn-param-names, r=eddyb
Don't use `dep_graph.with_ignore` when encoding fn param names The call to `with_ignore` was added years ago, and should no longer be necessary with the modern incremental query infrastructure. I also removed a related FIXME comment for issue #38501, which was closed months ago.
2 parents a45dedf + 5d40e45 commit b287b56

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/librustc_metadata/rmeta/decoder/cstore_impl.rs

-4
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,6 @@ provide! { <'tcx> tcx, def_id, other, cdata,
136136
item_attrs => { tcx.arena.alloc_from_iter(
137137
cdata.get_item_attrs(def_id.index, tcx.sess).into_iter()
138138
) }
139-
// FIXME(#38501) We've skipped a `read` on the `hir_owner_nodes` of
140-
// a `fn` when encoding, so the dep-tracking wouldn't work.
141-
// This is only used by rustdoc anyway, which shouldn't have
142-
// incremental recompilation ever enabled.
143139
fn_arg_names => { cdata.get_fn_param_names(tcx, def_id.index) }
144140
rendered_const => { cdata.get_rendered_const(def_id.index) }
145141
impl_parent => { cdata.get_parent_impl(def_id.index) }

src/librustc_metadata/rmeta/encoder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ impl EncodeContext<'a, 'tcx> {
10891089
}
10901090

10911091
fn encode_fn_param_names_for_body(&mut self, body_id: hir::BodyId) -> Lazy<[Ident]> {
1092-
self.tcx.dep_graph.with_ignore(|| self.lazy(self.tcx.hir().body_param_names(body_id)))
1092+
self.lazy(self.tcx.hir().body_param_names(body_id))
10931093
}
10941094

10951095
fn encode_fn_param_names(&mut self, param_names: &[Ident]) -> Lazy<[Ident]> {

0 commit comments

Comments
 (0)