File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
compiler/rustc_middle/src/query Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -1484,25 +1484,21 @@ rustc_queries! {
1484
1484
1485
1485
query get_lib_features( _: ( ) ) -> LibFeatures {
1486
1486
storage( ArenaCacheSelector <' tcx>)
1487
- eval_always
1488
1487
desc { "calculating the lib features map" }
1489
1488
}
1490
- query defined_lib_features( _: CrateNum )
1491
- -> & ' tcx [ ( Symbol , Option <Symbol >) ] {
1489
+ query defined_lib_features( _: CrateNum ) -> & ' tcx [ ( Symbol , Option <Symbol >) ] {
1492
1490
desc { "calculating the lib features defined in a crate" }
1493
1491
separate_provide_extern
1494
1492
}
1495
1493
/// Returns the lang items defined in another crate by loading it from metadata.
1496
1494
query get_lang_items( _: ( ) ) -> LanguageItems {
1497
1495
storage( ArenaCacheSelector <' tcx>)
1498
- eval_always
1499
1496
desc { "calculating the lang items map" }
1500
1497
}
1501
1498
1502
1499
/// Returns all diagnostic items defined in all crates.
1503
1500
query all_diagnostic_items( _: ( ) ) -> rustc_hir:: diagnostic_items:: DiagnosticItems {
1504
1501
storage( ArenaCacheSelector <' tcx>)
1505
- eval_always
1506
1502
desc { "calculating the diagnostic items map" }
1507
1503
}
1508
1504
You can’t perform that action at this time.
0 commit comments