mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 15:15:46 +00:00
softfloat: Add flag specific to Inf * 0
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-4-richard.henderson@linaro.org> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
committed by
Cédric Le Goater
parent
ba11446c40
commit
bead3c9b0f
@ -153,6 +153,7 @@ enum {
|
||||
float_flag_input_denormal = 0x0020,
|
||||
float_flag_output_denormal = 0x0040,
|
||||
float_flag_invalid_isi = 0x0080, /* inf - inf */
|
||||
float_flag_invalid_imz = 0x0100, /* inf * 0 */
|
||||
};
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user