File tree 1 file changed +4
-6
lines changed
compiler/rustc_middle/src/ty
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -954,9 +954,8 @@ impl<'tcx> TyCtxtAt<'tcx> {
954
954
955
955
impl < ' tcx > TyCtxt < ' tcx > {
956
956
pub fn iter_local_def_id ( self ) -> impl Iterator < Item = LocalDefId > + ' tcx {
957
- // Create a dependency to the red node to be sure we re-execute this when the amount of
958
- // definitions change.
959
- self . dep_graph . read_index ( DepNodeIndex :: FOREVER_RED_NODE ) ;
957
+ // Depend on the `analysis` query to ensure compilation if finished.
958
+ self . ensure ( ) . analysis ( ( ) ) ;
960
959
961
960
let definitions = & self . untracked . definitions ;
962
961
std:: iter:: from_generator ( || {
@@ -976,9 +975,8 @@ impl<'tcx> TyCtxt<'tcx> {
976
975
}
977
976
978
977
pub fn def_path_table ( self ) -> & ' tcx rustc_hir:: definitions:: DefPathTable {
979
- // Create a dependency to the crate to be sure we re-execute this when the amount of
980
- // definitions change.
981
- self . dep_graph . read_index ( DepNodeIndex :: FOREVER_RED_NODE ) ;
978
+ // Depend on the `analysis` query to ensure compilation if finished.
979
+ self . ensure ( ) . analysis ( ( ) ) ;
982
980
983
981
// Freeze definitions once we start iterating on them, to prevent adding new ones
984
982
// while iterating. If some query needs to add definitions, it should be `ensure`d above.
You can’t perform that action at this time.
0 commit comments