]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_const_eval/src/interpret/machine.rs
Auto merge of #103298 - ferrocene:pa-compile-flags-last, r=jyn514
[rust.git] / compiler / rustc_const_eval / src / interpret / machine.rs
index 530e252b7c077ed0a0f4d0cfdb2c0d5c3357a62b..351152eba01f6ae219c2034ff8ffacb37b0ca054 100644 (file)
@@ -426,7 +426,7 @@ fn after_stack_pop(
     type ExtraFnVal = !;
 
     type MemoryMap =
-        rustc_data_structures::fx::FxHashMap<AllocId, (MemoryKind<Self::MemoryKind>, Allocation)>;
+        rustc_data_structures::fx::FxIndexMap<AllocId, (MemoryKind<Self::MemoryKind>, Allocation)>;
     const GLOBAL_KIND: Option<Self::MemoryKind> = None; // no copying of globals from `tcx` to machine memory
 
     type AllocExtra = ();