We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c160bf3 commit 40629efCopy full SHA for 40629ef
compiler/rustc_middle/src/query/mod.rs
@@ -716,10 +716,7 @@ rustc_queries! {
716
"const-evaluating + checking `{}`",
717
key.value.display(tcx)
718
}
719
- cache_on_disk_if(_, opt_result) {
720
- // Only store results without errors
721
- opt_result.map_or(true, |r| r.is_ok())
722
- }
+ cache_on_disk_if { true }
723
724
725
/// Evaluates const items or anonymous constants
@@ -734,10 +731,7 @@ rustc_queries! {
734
731
"simplifying constant for the type system `{}`",
735
732
736
733
737
738
739
740
741
742
743
/// Destructure a constant ADT or array into its variant index and its
0 commit comments