File tree 1 file changed +0
-2
lines changed
compiler/rustc_middle/src/query
1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -1602,7 +1602,6 @@ rustc_queries! {
1602
1602
/// `Err(AlwaysRequiresDrop)` is returned.
1603
1603
query adt_significant_drop_tys( def_id: DefId ) -> Result <& ' tcx ty:: List <Ty <' tcx>>, AlwaysRequiresDrop > {
1604
1604
desc { |tcx| "computing when `{}` has a significant destructor" , tcx. def_path_str( def_id) }
1605
- cache_on_disk_if { false }
1606
1605
}
1607
1606
1608
1607
/// Returns a list of types which (a) have a potentially significant destructor
@@ -1624,7 +1623,6 @@ rustc_queries! {
1624
1623
/// Otherwise, there is a risk of query cycles.
1625
1624
query list_significant_drop_tys( ty: ty:: PseudoCanonicalInput <' tcx, Ty <' tcx>>) -> & ' tcx ty:: List <Ty <' tcx>> {
1626
1625
desc { |tcx| "computing when `{}` has a significant destructor" , ty. value }
1627
- cache_on_disk_if { false }
1628
1626
}
1629
1627
1630
1628
/// Computes the layout of a type. Note that this implicitly
You can’t perform that action at this time.
0 commit comments