diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2023-07-15 10:17:37 +0000 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2023-07-17 07:37:03 +0000 |
| commit | fdc93f307ffb28390aeab9be221a5e9e90517c3a (patch) | |
| tree | 8ecf00a65d62c5e2305c06d972f60bebf2b5431e /compiler/rustc_middle/src | |
| parent | 51e1f7a5611c0003398fab18eb339a4178364344 (diff) | |
| download | rust-fdc93f307ffb28390aeab9be221a5e9e90517c3a.tar.gz rust-fdc93f307ffb28390aeab9be221a5e9e90517c3a.zip | |
Do not fetch HIR in native_libs.
Diffstat (limited to 'compiler/rustc_middle/src')
| -rw-r--r-- | compiler/rustc_middle/src/query/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs index 45fa82ba68a..a8c0751e1f9 100644 --- a/compiler/rustc_middle/src/query/mod.rs +++ b/compiler/rustc_middle/src/query/mod.rs @@ -1579,7 +1579,7 @@ rustc_queries! { } /// Returns a list of all `extern` blocks of a crate. - query foreign_modules(_: CrateNum) -> &'tcx FxHashMap<DefId, ForeignModule> { + query foreign_modules(_: CrateNum) -> &'tcx FxIndexMap<DefId, ForeignModule> { arena_cache desc { "looking up the foreign modules of a linked crate" } separate_provide_extern |
