Rollup merge of #116534 - cjgillot:no-dep-tasks, r=davidtwco

Remove -Zdep-tasks.

This option is not useful any more, we can use `tracing` and `RUSTC_LOG` to debug the dep-graph.
This commit is contained in:
Jubilee 2023-10-28 01:07:35 -07:00 committed by GitHub
commit 975d042d4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 28 deletions

View file

@ -440,8 +440,6 @@ where
);
if let Some(key) = Q::Key::recover(tcx, &dep_node) {
#[cfg(debug_assertions)]
let _guard = tracing::span!(tracing::Level::TRACE, stringify!($name), ?key).entered();
force_query(query, QueryCtxt::new(tcx), key, dep_node);
true
} else {