mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-19 03:20:14 +00:00
Add floats to the dev backend
This commit is contained in:
parent
eecdc7ff85
commit
7f8511532a
5 changed files with 406 additions and 61 deletions
|
@ -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)?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue