Skip to content

Commit 3524e6a

Browse files
ensure_ok().query doesn't need cache_on_disk
1 parent 444a7eb commit 3524e6a

File tree

1 file changed

+0
-2
lines changed
  • compiler/rustc_middle/src/query

1 file changed

+0
-2
lines changed

Diff for: compiler/rustc_middle/src/query/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,6 @@ rustc_queries! {
10341034
/// Unsafety-check this `LocalDefId`.
10351035
query check_unsafety(key: LocalDefId) {
10361036
desc { |tcx| "unsafety-checking `{}`", tcx.def_path_str(key) }
1037-
cache_on_disk_if { true }
10381037
}
10391038

10401039
/// Checks well-formedness of tail calls (`become f()`).
@@ -2511,7 +2510,6 @@ rustc_queries! {
25112510
/// monomorphized.
25122511
query check_mono_item(key: ty::Instance<'tcx>) {
25132512
desc { "monomorphization-time checking" }
2514-
cache_on_disk_if { true }
25152513
}
25162514

25172515
/// Builds the set of functions that should be skipped for the move-size check.

0 commit comments

Comments
 (0)