ensure_ok().query doesn't need cache_on_disk

This commit is contained in:
Michael Goulet 2025-04-02 03:39:16 +00:00
parent 444a7eb5aa
commit 3524e6ab0f

View File

@ -1034,7 +1034,6 @@ rustc_queries! {
/// Unsafety-check this `LocalDefId`.
query check_unsafety(key: LocalDefId) {
desc { |tcx| "unsafety-checking `{}`", tcx.def_path_str(key) }
cache_on_disk_if { true }
}
/// Checks well-formedness of tail calls (`become f()`).
@ -2511,7 +2510,6 @@ rustc_queries! {
/// monomorphized.
query check_mono_item(key: ty::Instance<'tcx>) {
desc { "monomorphization-time checking" }
cache_on_disk_if { true }
}
/// Builds the set of functions that should be skipped for the move-size check.