mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
softfloat: Add flag specific to convert non-nan to int
PowerPC has this flag, and it's easier to compute it here than after the fact. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20211119160502.17432-7-richard.henderson@linaro.org> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
f8718aab89
commit
81254b02eb
2 changed files with 8 additions and 7 deletions
|
@ -157,6 +157,7 @@ enum {
|
|||
float_flag_invalid_idi = 0x0200, /* inf / inf */
|
||||
float_flag_invalid_zdz = 0x0400, /* 0 / 0 */
|
||||
float_flag_invalid_sqrt = 0x0800, /* sqrt(-x) */
|
||||
float_flag_invalid_cvti = 0x1000, /* non-nan to integer */
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue