feat(singlepass): add NEON feature for arm64

This commit is contained in:
Edoardo Marangoni
2024-03-27 18:27:44 +01:00
parent aa2ee5b637
commit 4a437464fb
4 changed files with 185 additions and 61 deletions

View File

@ -180,7 +180,7 @@ impl Compiler for SinglepassCompiler {
generator.finalize(input)
}
Architecture::Aarch64(_) => {
let machine = MachineARM64::new();
let machine = MachineARM64::new(Some(target.clone()));
let mut generator = FuncGen::new(
module,
&self.config,