diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2023-02-21 11:35:19 +0100 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2023-03-01 10:19:25 +0100 |
| commit | 5ff00f96e62248e2e9fe8233ffd98e47bf3dfdc7 (patch) | |
| tree | 389631ed5a114616f833020fd71f6b0d94d96817 /compiler/rustc_middle/src/query/mod.rs | |
| parent | 5983a3a99ea631da9d7d1ce510a6761913f92a89 (diff) | |
| download | rust-5ff00f96e62248e2e9fe8233ffd98e47bf3dfdc7.tar.gz rust-5ff00f96e62248e2e9fe8233ffd98e47bf3dfdc7.zip | |
Use DefIdMap instead of FxHashMap for impl_item_implementor_ids query.
Diffstat (limited to 'compiler/rustc_middle/src/query/mod.rs')
| -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 8fe5586723d..fc4b3a2413a 100644 --- a/compiler/rustc_middle/src/query/mod.rs +++ b/compiler/rustc_middle/src/query/mod.rs @@ -757,7 +757,7 @@ rustc_queries! { /// /// The map returned for `tcx.impl_item_implementor_ids(impl_id)` would be ///`{ trait_f: impl_f, trait_g: impl_g }` - query impl_item_implementor_ids(impl_id: DefId) -> &'tcx FxHashMap<DefId, DefId> { + query impl_item_implementor_ids(impl_id: DefId) -> &'tcx DefIdMap<DefId> { arena_cache desc { |tcx| "comparing impl items against trait for `{}`", tcx.def_path_str(impl_id) } } |
