We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 107896c + e70d47b commit 4c10c84Copy full SHA for 4c10c84
compiler/rustc_middle/src/query/mod.rs
@@ -1278,6 +1278,8 @@ rustc_queries! {
1278
desc { |tcx| "collecting child items of `{}`", tcx.def_path_str(def_id) }
1279
}
1280
query extern_mod_stmt_cnum(def_id: LocalDefId) -> Option<CrateNum> {
1281
+ // This depends on untracked global state (`tcx.extern_crate_map`)
1282
+ eval_always
1283
desc { |tcx| "computing crate imported by `{}`", tcx.def_path_str(def_id.to_def_id()) }
1284
1285
0 commit comments