about summary refs log tree commit diff
path: root/compiler/rustc_query_system
diff options
context:
space:
mode:
authorAndrew Xie <ndrew.xie@gmail.com>2023-05-07 21:08:47 -0400
committerAndrew Xie <ndrew.xie@gmail.com>2023-06-04 21:55:32 -0400
commit96b577860d4e175ccc4698b9e9a8a822b228fc19 (patch)
treebd9efda346de27dc61a0206a020c40906f50b6f6 /compiler/rustc_query_system
parentcf7dea571695be5db843519db014785c4a0a2786 (diff)
downloadrust-96b577860d4e175ccc4698b9e9a8a822b228fc19.tar.gz
rust-96b577860d4e175ccc4698b9e9a8a822b228fc19.zip
Fixed failing test + minor cleanup
Diffstat (limited to 'compiler/rustc_query_system')
-rw-r--r--compiler/rustc_query_system/src/dep_graph/graph.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_query_system/src/dep_graph/graph.rs b/compiler/rustc_query_system/src/dep_graph/graph.rs
index 54eaa1d4a7f..c9e80a6d9bc 100644
--- a/compiler/rustc_query_system/src/dep_graph/graph.rs
+++ b/compiler/rustc_query_system/src/dep_graph/graph.rs
@@ -6,6 +6,7 @@ use rustc_data_structures::sharded::{self, Sharded};
 use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
 use rustc_data_structures::steal::Steal;
 use rustc_data_structures::sync::{AtomicU32, AtomicU64, Lock, Lrc, Ordering};
+use rustc_data_structures::unord::UnordMap;
 use rustc_index::IndexVec;
 use rustc_serialize::opaque::{FileEncodeResult, FileEncoder};
 use smallvec::{smallvec, SmallVec};
@@ -1048,7 +1049,7 @@ pub struct WorkProduct {
     ///
     /// By convention, file extensions are currently used as identifiers, i.e. the key "o" maps to
     /// the object file's path, and "dwo" to the dwarf object file's path.
-    pub saved_files: FxIndexMap<String, String>,
+    pub saved_files: UnordMap<String, String>,
 }
 
 // Index type for `DepNodeData`'s edges.