Upgraded Cranelift to 0.67

This commit is contained in:
Syrus
2020-10-29 20:19:16 -07:00
parent 3b23e75ffb
commit 9bd2c47730
22 changed files with 1123 additions and 464 deletions

View File

@ -124,7 +124,7 @@ impl LLVMCompiler {
compile_info
.module
.signatures
.into_iter()
.iter()
.collect::<Vec<_>>()
.par_iter()
.map_init(
@ -149,7 +149,7 @@ impl LLVMCompiler {
compile_info
.module
.functions
.into_iter()
.iter()
.collect::<Vec<_>>()
.par_iter()
.map_init(
@ -248,7 +248,7 @@ impl Compiler for LLVMCompiler {
let mut frame_section_bytes = vec![];
let mut frame_section_relocations = vec![];
let functions = function_body_inputs
.into_iter()
.iter()
.collect::<Vec<(LocalFunctionIndex, &FunctionBodyData<'_>)>>()
.par_iter()
.map_init(