gen_dev: Add is_nan_freg_reg64

This commit is contained in:
Basile Henry 2023-05-03 09:32:19 +01:00
parent 1391920d0e
commit d8b658da5d
3 changed files with 35 additions and 1 deletions

View file

@ -538,6 +538,8 @@ pub trait Assembler<GeneralReg: RegTrait, FloatReg: RegTrait>: Sized + Copy {
operation: CompareOperation,
);
fn is_nan_freg_reg64(buf: &mut Vec<'_, u8>, dst: GeneralReg, src: FloatReg, width: FloatWidth);
fn to_float_freg32_reg64(buf: &mut Vec<'_, u8>, dst: FloatReg, src: GeneralReg);
fn to_float_freg64_reg64(buf: &mut Vec<'_, u8>, dst: FloatReg, src: GeneralReg);