Merge branch 'master' into imp_singlepass_x86_64_tzcnt

This commit is contained in:
ptitSeb
2022-11-21 20:11:17 +01:00
committed by GitHub
81 changed files with 4925 additions and 3326 deletions

View File

@ -248,13 +248,13 @@ impl Compiler for SinglepassCompiler {
#[cfg(not(feature = "unwind"))]
let dwarf = None;
Ok(Compilation::new(
functions.into_iter().collect(),
Ok(Compilation {
functions: functions.into_iter().collect(),
custom_sections,
function_call_trampolines,
dynamic_function_trampolines,
dwarf,
))
debug: dwarf,
})
}
}