1
Fork 0

Updated cranelift codegen to reflect modified trait signature

This commit is contained in:
Andrew Xie 2023-04-07 15:56:33 -04:00
parent 17412bae30
commit 204e2bf5a4
3 changed files with 6 additions and 6 deletions

View file

@ -54,8 +54,8 @@ impl OngoingCodegen {
self,
sess: &Session,
backend_config: &BackendConfig,
) -> (CodegenResults, FxHashMap<WorkProductId, WorkProduct>) {
let mut work_products = FxHashMap::default();
) -> (CodegenResults, FxIndexMap<WorkProductId, WorkProduct>) {
let mut work_products = FxIndexMap::default();
let mut modules = vec![];
for module_codegen in self.modules {