We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdc8ada commit ff30243Copy full SHA for ff30243
compiler/rustc_middle/src/query/mod.rs
@@ -1234,6 +1234,7 @@ rustc_queries! {
1234
"computing (transitive) callees of `{}` that may recurse",
1235
tcx.def_path_str(key),
1236
}
1237
+ cache_on_disk_if { true }
1238
1239
1240
/// Obtain all the calls into other local functions
@@ -1243,6 +1244,7 @@ rustc_queries! {
1243
1244
"computing all local function calls in `{}`",
1245
tcx.def_path_str(key.def_id()),
1246
1247
+ cache_on_disk_if { key.def_id().is_local() }
1248
1249
1250
/// Computes the tag (if any) for a given type and variant.
0 commit comments