We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0da778 commit f90fd69Copy full SHA for f90fd69
compiler/rustc_middle/src/query/mod.rs
@@ -1498,7 +1498,6 @@ rustc_queries! {
1498
}
1499
query mir_flags(key: DefId) -> MirFlags {
1500
desc { |tcx| "stashing some local properties of `{}` before the body is stolen", tcx.def_path_str(key) }
1501
- cache_on_disk_if { true }
1502
separate_provide_extern
1503
1504
query required_panic_strategy(_: CrateNum) -> Option<PanicStrategy> {
compiler/rustc_mir_transform/src/lib.rs
@@ -338,8 +338,6 @@ fn mir_promoted(
338
tcx.ensure_with_value().coroutine_by_move_body_def_id(def);
339
340
341
- tcx.ensure_with_value().mir_flags(def);
342
-
343
let mut body = tcx.mir_built(def).steal();
344
if let Some(error_reported) = const_qualifs.tainted_by_errors {
345
body.tainted_by_errors = Some(error_reported);
0 commit comments