File tree 1 file changed +1
-5
lines changed
compiler/rustc_middle/src/query
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -649,7 +649,6 @@ rustc_queries! {
649
649
/// Methods in these implementations don't need to be exported.
650
650
query inherent_impls( key: DefId ) -> & ' tcx [ DefId ] {
651
651
desc { |tcx| "collecting inherent impls for `{}`" , tcx. def_path_str( key) }
652
- eval_always
653
652
separate_provide_extern
654
653
}
655
654
@@ -808,15 +807,12 @@ rustc_queries! {
808
807
/// Not meant to be used directly outside of coherence.
809
808
query crate_inherent_impls( k: ( ) ) -> CrateInherentImpls {
810
809
storage( ArenaCacheSelector <' tcx>)
811
- eval_always
812
810
desc { "all inherent impls defined in crate" }
813
811
}
814
812
815
813
/// Checks all types in the crate for overlap in their inherent impls. Reports errors.
816
814
/// Not meant to be used directly outside of coherence.
817
- query crate_inherent_impls_overlap_check( _: ( ) )
818
- -> ( ) {
819
- eval_always
815
+ query crate_inherent_impls_overlap_check( _: ( ) ) -> ( ) {
820
816
desc { "check for overlap between inherent impls defined in this crate" }
821
817
}
822
818
You can’t perform that action at this time.
0 commit comments