about summary refs log tree commit diff
path: root/compiler
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2025-04-02 03:39:16 +0000
committerMichael Goulet <michael@errs.io>2025-04-02 04:01:15 +0000
commit3524e6ab0fd14627bd84b51e00f85e0a8f05f1b9 (patch)
treec13c26d7a6fe0459ce32e02f607e58dc2e089c52 /compiler
parent444a7eb5aa9772d2d4363956bdfac8315e47d739 (diff)
downloadrust-3524e6ab0fd14627bd84b51e00f85e0a8f05f1b9.tar.gz
rust-3524e6ab0fd14627bd84b51e00f85e0a8f05f1b9.zip
ensure_ok().query doesn't need cache_on_disk
Diffstat (limited to 'compiler')
-rw-r--r--compiler/rustc_middle/src/query/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs
index 5315e14b0ff..fe7ae1f32e2 100644
--- a/compiler/rustc_middle/src/query/mod.rs
+++ b/compiler/rustc_middle/src/query/mod.rs
@@ -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.