Add floats to the dev backend

This commit is contained in:
Brendan Hansknecht 2021-01-18 12:07:47 -08:00
parent eecdc7ff85
commit 7f8511532a
5 changed files with 406 additions and 61 deletions

View file

@ -30,6 +30,7 @@ pub fn build_module<'a>(
} => {
let backend: Backend64Bit<
x86_64::X86_64GPReg,
x86_64::X86_64FPReg,
x86_64::X86_64Assembler,
x86_64::X86_64SystemV,
> = Backend::new(env, target)?;
@ -47,6 +48,7 @@ pub fn build_module<'a>(
} => {
let backend: Backend64Bit<
aarch64::AArch64GPReg,
aarch64::AArch64FPReg,
aarch64::AArch64Assembler,
aarch64::AArch64Call,
> = Backend::new(env, target)?;