Expand register names for more readability

This commit is contained in:
Brendan Hansknecht 2021-01-21 21:14:21 -08:00
parent 5cabdd83b0
commit 9032c8c43b
5 changed files with 644 additions and 540 deletions

View file

@ -29,8 +29,8 @@ pub fn build_module<'a>(
..
} => {
let backend: Backend64Bit<
x86_64::X86_64GPReg,
x86_64::X86_64FPReg,
x86_64::X86_64GeneralReg,
x86_64::X86_64FloatReg,
x86_64::X86_64Assembler,
x86_64::X86_64SystemV,
> = Backend::new(env, target)?;
@ -47,8 +47,8 @@ pub fn build_module<'a>(
..
} => {
let backend: Backend64Bit<
aarch64::AArch64GPReg,
aarch64::AArch64FPReg,
aarch64::AArch64GeneralReg,
aarch64::AArch64FloatReg,
aarch64::AArch64Assembler,
aarch64::AArch64Call,
> = Backend::new(env, target)?;