1
Fork 0

Feat: further testing & support for i64 general register use

This commit is contained in:
linux1 2021-08-22 17:26:18 -04:00
parent 66e95b17ec
commit eeb0b52bf8
2 changed files with 47 additions and 7 deletions

View file

@ -35,7 +35,7 @@ impl S390xInlineAsmRegClass {
arch: InlineAsmArch,
) -> &'static [(InlineAsmType, Option<&'static str>)] {
match (self, arch) {
(Self::reg, _) => types! { _: I8, I16, I32; },
(Self::reg, _) => types! { _: I8, I16, I32, I64; },
(Self::freg, _) => types! { _: F32, F64; },
}
}